No need to translate this error message.

This commit is contained in:
Todd C. Miller
2013-04-24 11:11:21 -04:00
parent ad019da9ef
commit 8ca50e13b7
2 changed files with 6 additions and 11 deletions

View File

@@ -525,7 +525,7 @@ delay(double secs)
rval = nanosleep(&ts, &rts);
} while (rval == -1 && errno == EINTR);
if (rval == -1) {
fatal_nodebug(_("nanosleep: tv_sec %lld, tv_nsec %ld"),
fatal_nodebug("nanosleep: tv_sec %lld, tv_nsec %ld",
(long long)ts.tv_sec, (long)ts.tv_nsec);
}
}