~ubuntu-branches/ubuntu/maverick/swig1.3/maverick

« back to all changes in this revision

Viewing changes to Lib/tcl/typemaps.i

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-09-01 18:35:55 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050901183555-eq59uwhq8b62e44c
Tags: 1.3.24-1ubuntu4
* Use php5-dev instead of php4-dev, to kick php4 out of main.
* Drop support for generation of pike bindings, as nothing uses it,
  and swig is the only thing keeping pike7.6 in main (Ubuntu #13796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
{
275
275
  char temp[256];
276
276
  Tcl_Obj *o;
277
 
  sprintf(temp,"%lld",*($1));
 
277
  sprintf(temp,"%lld",(long long)*($1));
278
278
  o = Tcl_NewStringObj(temp,-1);
279
279
  Tcl_ListObjAppendElement(interp,Tcl_GetObjResult(interp),o);
280
280
}
283
283
{
284
284
  char temp[256];
285
285
  Tcl_Obj *o;
286
 
  sprintf(temp,"%llu",*($1));
 
286
  sprintf(temp,"%llu",(unsigned long long)*($1));
287
287
  o = Tcl_NewStringObj(temp,-1);
288
288
  Tcl_ListObjAppendElement(interp,Tcl_GetObjResult(interp),o);
289
289
}