Merge changes from 3.14.12.5 (revno 12582)

This commit is contained in:
Andrew Johnson
2015-03-25 12:53:13 -05:00
5 changed files with 28 additions and 9 deletions
+2 -1
View File
@@ -85,7 +85,8 @@ static void sprint_long (char *ret, dbr_long_t val, IntFormatT outType)
"0x%lX" /* hex */
};
sprintf(ret, fmt[outType], val);
/* Formats have long modifier, pass value as a long */
sprintf(ret, fmt[outType], (long) val);
}
}