libDtHelp: Resolve 11 compiler warnings.

This commit is contained in:
Peter Howkins
2015-01-14 11:41:38 +00:00
parent 917e6cfc49
commit f8f04a5977
4 changed files with 10 additions and 6 deletions

View File

@@ -1377,7 +1377,7 @@ _DtHelpCeGetCcdfDocStamp (
*ret_time = (char *) malloc (sizeof(time_t) * 3 + 1);
if (*ret_time != NULL)
{
sprintf(*ret_time, "%u", buf.st_mtime);
sprintf(*ret_time, "%u", (unsigned) buf.st_mtime);
return -2;
}
}