/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/SimpleTypeSystem.c

  • Committer: Gustav Hartvigsson
  • Date: 2016-02-01 14:29:35 UTC
  • mfrom: (121.1.4 simpletypesystem_gc)
  • Revision ID: gustav.hartvigsson@gmail.com-20160201142935-tz7ef63id2g3yfof
* Merged GC branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
schar *
29
29
s_get_version_string () {
30
 
  schar * ret_val = malloc ( sizeof(char) * 32);
 
30
  schar * ret_val = s_malloc ( sizeof(char) * 32);
31
31
  sprintf (ret_val, "Version: %d.%d.%d ", s_get_version_major (),
32
32
                                           s_get_version_minor (),
33
33
                                           s_get_version_patch ());