Changeset 4804 for nanovis


Ignore:
Timestamp:
Dec 1, 2014, 4:41:27 AM (10 years ago)
Author:
ldelgass
Message:

drop int from long int

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nanovis/branches/1.1/nanovis.cpp

    r4802 r4804  
    356356    /* num_frames */
    357357    Tcl_DStringAppendElement(&ds, "num_frames");
    358     sprintf(buf, "%lu", (unsigned long int)NanoVis::stats.nFrames);
     358    sprintf(buf, "%lu", (unsigned long)NanoVis::stats.nFrames);
    359359    Tcl_DStringAppendElement(&ds, buf);
    360360    /* frame_bytes */
    361361    Tcl_DStringAppendElement(&ds, "frame_bytes");
    362     sprintf(buf, "%lu", (unsigned long int)NanoVis::stats.nBytes);
     362    sprintf(buf, "%lu", (unsigned long)NanoVis::stats.nBytes);
    363363    Tcl_DStringAppendElement(&ds, buf);
    364364    /* num_commands */
    365365    Tcl_DStringAppendElement(&ds, "num_commands");
    366     sprintf(buf, "%lu", (unsigned long int)NanoVis::stats.nCommands);
     366    sprintf(buf, "%lu", (unsigned long)NanoVis::stats.nCommands);
    367367    Tcl_DStringAppendElement(&ds, buf);
    368368    /* cmd_time */
Note: See TracChangeset for help on using the changeset viewer.