mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2025-01-10 18:43:26 +08:00
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>
This commit is contained in:
parent
b1e22d52d0
commit
438961210d
@ -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
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user