Changeset 108 for trunk/common_functions
- Timestamp:
- Oct 4, 2023, 6:18:02 PM (23 months ago)
- Location:
- trunk/common_functions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/common_functions/message.c
r104 r108 189 189 #define TLENGTH 256L 190 190 191 if(NULL HANDLE==(pText=malloc(TLENGTH*2*sizeof(char))))191 if(NULL==(pText=malloc(TLENGTH*2*sizeof(char)))) 192 192 return MBID_ERROR; 193 193 -
trunk/common_functions/uptime.c
r4 r108 296 296 seconds = uptime % (60L); 297 297 298 sprintf (chrTemp, "%l d %02ld:%02ld:%02ld",298 sprintf (chrTemp, "%lu %02lu:%02lu:%02lu", 299 299 days, hours, 300 300 minutes, seconds);
Note:
See TracChangeset
for help on using the changeset viewer.