summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-31 20:38:56 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-31 20:38:56 (GMT)
commitbe1c4e8f3d8d223d11ff695785415413427f0405 (patch)
tree42da3d31450ef0ebb1642738c0ef2e223fc403cc
parent4132223466dcabc19a1b6f0178adf1c1a35b07ad (diff)
Fixed a mistake in the previous commit.
-rw-r--r--ChangeLog6
-rw-r--r--src/mangling/dex/shorty_tok.l2
-rw-r--r--src/mangling/dex/type_tok.l2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 893f455..1b59d2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+18-01-31 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/mangling/dex/shorty_tok.l:
+ * src/mangling/dex/type_tok.l:
+ Fix a mistake in the previous commit.
+
18-01-30 Cyrille Bagard <nocbos@gmail.com>
* configure.ac:
diff --git a/src/mangling/dex/shorty_tok.l b/src/mangling/dex/shorty_tok.l
index 92c264a..a3545a2 100644
--- a/src/mangling/dex/shorty_tok.l
+++ b/src/mangling/dex/shorty_tok.l
@@ -2,7 +2,7 @@
%{
#include "context.h"
-#include "libformatmanglingdexshorty_la-shorty_gram.h"
+#include "libmanglingdexshorty_la-shorty_gram.h"
%}
diff --git a/src/mangling/dex/type_tok.l b/src/mangling/dex/type_tok.l
index 918846a..7e85d43 100644
--- a/src/mangling/dex/type_tok.l
+++ b/src/mangling/dex/type_tok.l
@@ -2,7 +2,7 @@
%{
#include "context.h"
-#include "libformatmanglingdextype_la-type_gram.h"
+#include "libmanglingdextype_la-type_gram.h"
/* See lemoda.net/c/reentrant-parser */