~ubuntu-branches/ubuntu/saucy/orbit2/saucy

« back to all changes in this revision

Viewing changes to src/idl-compiler/orbit-idl-c-utils.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-03-06 18:40:04 UTC
  • mfrom: (1.2.17 upstream) (7.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090306184004-pbuwp3a2d69aubkn
Tags: 1:2.14.17-0.1
* Non-maintainer upload.
* New upstream bugfix release. No API changes.
* Update Standards-Version to 3.8.0, no additional changes needed.
* Build depend on autotools-dev to get config.{sub,guess} updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
orbit_cbe_write_typespec(FILE *of, IDL_tree tree)
204
204
{
205
205
    char *name = orbit_cbe_get_typespec_str(tree);
206
 
    fprintf( of, name);
 
206
    fprintf(of, "%s", name);
207
207
    g_free(name);
208
208
}
209
209
 
262
262
{
263
263
    char *str;
264
264
    str = orbit_cbe_write_param_typespec_str (ts, role);
265
 
    fprintf (of, str);
 
265
    fprintf (of, "%s", str);
266
266
    g_free (str);
267
267
}
268
268