diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-22 01:00:34 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-22 01:00:34 +0100 |
commit | b3bb9cce9a4dea9e8e4ab899042b3d9c9162cb5b (patch) | |
tree | e0720445313bc56c5abf900d6644763c98f2e898 /libfshelp-tests | |
parent | b3bbe46261006e6a6227ad55e28b630d06b9ed4a (diff) | |
download | hurd-b3bb9cce9a4dea9e8e4ab899042b3d9c9162cb5b.tar.gz hurd-b3bb9cce9a4dea9e8e4ab899042b3d9c9162cb5b.tar.bz2 hurd-b3bb9cce9a4dea9e8e4ab899042b3d9c9162cb5b.zip |
libfshelp-tests: Fix warning
* libfshelp-tests/test-lockf.c (parse_args): Do not call error() with a
NULL pointer.
Diffstat (limited to 'libfshelp-tests')
-rw-r--r-- | libfshelp-tests/test-lockf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libfshelp-tests/test-lockf.c b/libfshelp-tests/test-lockf.c index 629069b8..a96a7d67 100644 --- a/libfshelp-tests/test-lockf.c +++ b/libfshelp-tests/test-lockf.c @@ -110,7 +110,7 @@ int parse_args (int argc, char **argv, char **file_name, *len = tmp; } else - error (1, EINVAL, "%s", str); + error (1, EINVAL, "missing number"); continue; } if (strncmp (str, "st", 2) == 0) @@ -127,7 +127,7 @@ int parse_args (int argc, char **argv, char **file_name, *sleep_time = tmp; } else - error (1, EINVAL, "%s", str); + error (1, EINVAL, "missing number"); continue; } error (1, EINVAL, "%s", str); |