diff options
Diffstat (limited to 'apps/plugins/pdbox/PDa/src/m_binbuf.c')
-rw-r--r-- | apps/plugins/pdbox/PDa/src/m_binbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pdbox/PDa/src/m_binbuf.c b/apps/plugins/pdbox/PDa/src/m_binbuf.c index b7c9a925d4..1665e213b9 100644 --- a/apps/plugins/pdbox/PDa/src/m_binbuf.c +++ b/apps/plugins/pdbox/PDa/src/m_binbuf.c | |||
@@ -96,13 +96,13 @@ void binbuf_text(t_binbuf *x, char *text, size_t size) | |||
96 | { | 96 | { |
97 | /* it's an atom other than a comma or semi */ | 97 | /* it's an atom other than a comma or semi */ |
98 | char c; | 98 | char c; |
99 | int floatstate = 0, slash = 0, lastslash = 0, | 99 | int floatstate = 0, slash = 0, /* lastslash = 0, */ |
100 | firstslash = (*textp == '\\'); | 100 | firstslash = (*textp == '\\'); |
101 | bufp = buf; | 101 | bufp = buf; |
102 | do | 102 | do |
103 | { | 103 | { |
104 | c = *bufp = *textp++; | 104 | c = *bufp = *textp++; |
105 | lastslash = slash; | 105 | /* lastslash = slash; */ |
106 | slash = (c == '\\'); | 106 | slash = (c == '\\'); |
107 | 107 | ||
108 | if (floatstate >= 0) | 108 | if (floatstate >= 0) |