summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorExplorer09 <explorer09@gmail.com>2017-07-18 22:39:00 +0800
committerWill Estes <westes575@gmail.com>2017-08-24 08:34:23 -0400
commita657f0c6f564d2edc6e34e0e9715a95b13bdb304 (patch)
tree7613f8df46bacbc866ae42b8877fe21aa3cf8cc6 /src
parentfb731ac0221e1866534dfe072b84b8af7a5d88f3 (diff)
Remove an unneeded gettext() in --version output
"%s %s\n" is not translatable
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 963d2d8..a55871e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1208,7 +1208,7 @@ void flexinit (int argc, char **argv)
break;
case OPT_VERSION:
- printf (_("%s %s\n"), (C_plus_plus ? "flex++" : "flex"), flex_version);
+ printf ("%s %s\n", (C_plus_plus ? "flex++" : "flex"), flex_version);
FLEX_EXIT (0);
case OPT_WARN: