summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kepplinger <martink@posteo.de>2017-10-18 15:45:41 +0200
committerPeter Hutterer <peter.hutterer@who-t.net>2017-10-19 08:48:13 +1000
commit99e237b9f3d16be5116c7b0c52b8e8ecac8a15f8 (patch)
tree7296b6eadb05e9aa7fcdf9d623f985614d7c1e57
parent46fdda7a67cfa8053edfa3f28851bf8518c420f3 (diff)
Fix warning when using autorestart without output file
The warning in case of a missing output file when using --autorestart is talking about --autoresume which doesn't exist. This is confusing so fix this. Signed-off-by: Martin Kepplinger <martink@posteo.de> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--tools/evemu-record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/evemu-record.c b/tools/evemu-record.c
index 40693ff..64a32ad 100644
--- a/tools/evemu-record.c
+++ b/tools/evemu-record.c
@@ -303,7 +303,7 @@ int main(int argc, char *argv[])
if (optind >= argc) {
if (autorestart) {
- fprintf(stderr, "Option --autoresume requires an output file\n");
+ fprintf(stderr, "Option --autorestart requires an output file\n");
goto out;
}
} else {