Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:35:40 +0000 (21:35 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:35:40 +0000 (21:35 +0000)
commit4d2d749ee627d388c4d1b55d168a7c30a626ab1d
tree68f179d2e28cea604b18e36d17f6b8d4e1932a9b
parent3787d01a51c110a513e9b6fafa6c5c641399f2ce
Don't embed `this'-style quotes in format strings.

Include "quote.h".
Rather than this: error (..., "...`%s'...", arg);
do this:          error (..., "...%s...", quote (arg));
src/sleep.c