Add missing parameter to error printf in blkid test program.

The blkid tag.c's test driver program had  a missing parameter to an 
error message printf.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Theodore Ts'o 2005-12-29 14:07:45 -05:00
parent b1e22d52d0
commit 438961210d
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-29 Theodore Ts'o <tytso@mit.edu>
* tag.c (main): Add missing parameter in error-handling printf of
the blkid test program tst_tag.
2005-12-10 Theodore Ts'o <tytso@mit.edu>
* Makefile.in: Add a dependency to make sure that the

View File

@ -436,7 +436,8 @@ int main(int argc, char **argv)
dev = blkid_get_dev(cache, devname, flags);
if (!dev) {
fprintf(stderr, "%s: Can not find device in blkid cache\n");
fprintf(stderr, "%s: Can not find device in blkid cache\n",
devname);
exit(1);
}
if (search_type) {