if the elements correspond to 0, they MUST be wholly
omitted, and the decimal point element also MUST be
omitted." */
- snprintf(usecstr, sizeof(usecstr), ".%06ld", usec);
+ (void) snprintf(usecstr, sizeof(usecstr), ".%06ld", usec);
/* truncate and trim trailing 0 */
usecstr[precision + 1] = '\0';
p = usecstr + strlen(usecstr) - 1;
if the elements correspond to 0, they MUST be wholly
omitted, and the decimal point element also MUST be
omitted." */
- snprintf(usecstr, sizeof(usecstr), ".%06ld", usec);
+ (void) snprintf(usecstr, sizeof(usecstr), ".%06ld", usec);
/* truncate and trim trailing 0 */
usecstr[precision + 1] = '\0';
p = usecstr + strlen(usecstr) - 1;