]> mj.ucw.cz Git - xsv.git/commitdiff
Fixed confusing error message
authorMartin Mares <mj@ucw.cz>
Tue, 24 Jul 2012 15:15:06 +0000 (17:15 +0200)
committerMartin Mares <mj@ucw.cz>
Tue, 24 Jul 2012 15:15:06 +0000 (17:15 +0200)
xsv.c

diff --git a/xsv.c b/xsv.c
index 971ae58f3ba971ca566130e35d8be0572971c3e8..4615d708dadc869542510462f0f8b4d0b660c9d3 100644 (file)
--- a/xsv.c
+++ b/xsv.c
@@ -706,7 +706,7 @@ static int parse_field(char *str)
        if (in_format->field_names && (f = find_field_by_name(in_format->field_names, str)) > 0)
                return f;
 
-       die("Unknown field %s", str);
+       die("Unknown field `%s'", str);
 }
 
 static char *parse_selector(char *str)