diff options
author | Slávek Banko <[email protected]> | 2016-09-03 17:57:54 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-03 17:58:05 +0200 |
commit | 8abf888c7d3f3a277fe04ef97df6185dadd9fa48 (patch) | |
tree | 6f66259872aef1e5216e5ca43da2d2b27d83b703 /filters/karbon/eps | |
parent | 08500cc118c149f1c8364eaf9ab505ace28913fa (diff) | |
download | koffice-8abf888c7d3f3a277fe04ef97df6185dadd9fa48.tar.gz koffice-8abf888c7d3f3a277fe04ef97df6185dadd9fa48.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 0b9e390c01029f4f1a8c0263e532fc1c3faf2b7d)
Diffstat (limited to 'filters/karbon/eps')
-rw-r--r-- | filters/karbon/eps/pscommentlexer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/karbon/eps/pscommentlexer.cc b/filters/karbon/eps/pscommentlexer.cc index a321cc0d..e15dcc59 100644 --- a/filters/karbon/eps/pscommentlexer.cc +++ b/filters/karbon/eps/pscommentlexer.cc @@ -59,7 +59,7 @@ const char*statetoa (State state){ typedef struct { State oldState; - char c; + signed char c; State newState; Action action; } Transition; |