]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Add missing parameter to error printf in blkid test program.
authorTheodore Ts'o <tytso@mit.edu>
Thu, 29 Dec 2005 19:07:45 +0000 (14:07 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 29 Dec 2005 19:07:45 +0000 (14:07 -0500)
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>
lib/blkid/ChangeLog
lib/blkid/tag.c

index 7683a77a12ddbf0b5c132c140efb13b18d5d51a9..099b4f10802820b4fd0ea51ccbac73dcc3a20dd9 100644 (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
index 9bca2c6ae9d34565e6cdd4455bd8d4f7aca805d7..a5f0c677953ad7204c39330426e84c4e1801bbc6 100644 (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) {