Fixed [ 791579 ] (unsigned) long long handled incorrectly

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5053 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-09-01 18:02:03 +00:00
commit c167f57cb8

View file

@ -274,7 +274,7 @@ output values.
{
char temp[256];
Tcl_Obj *o;
sprintf(temp,"%lld",$1);
sprintf(temp,"%lld",*($1));
o = Tcl_NewStringObj(temp,-1);
Tcl_ListObjAppendElement(interp,Tcl_GetObjResult(interp),o);
}
@ -283,7 +283,7 @@ output values.
{
char temp[256];
Tcl_Obj *o;
sprintf(temp,"%llu",$1);
sprintf(temp,"%llu",*($1));
o = Tcl_NewStringObj(temp,-1);
Tcl_ListObjAppendElement(interp,Tcl_GetObjResult(interp),o);
}