X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/8d3655be5a5c41b1f0a9985bcdb614693fce67e5..4618713ae48aac51c6f1a2474cc981f32c2bbede:/src/doprnt.c diff --git a/src/doprnt.c b/src/doprnt.c index 087256ced2..471e35c7b4 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -361,7 +361,7 @@ doprnt (char *buffer, ptrdiff_t bufsize, const char *format, /* Copy string into final output, truncating if no room. */ doit: - eassert (tem >= 0); + eassert (0 <= tem); /* Coming here means STRING contains ASCII only. */ if (STRING_BYTES_BOUND < tem) error ("Format width or precision too large");