Fix constant string type in punctuation_s

Signed-off-by: XoD <xoddark@gmail.com>
This commit is contained in:
XoD
2011-12-21 20:57:15 +01:00
parent f061e0f29d
commit 0cd4990575

View File

@@ -129,7 +129,7 @@ typedef enum {
// punctuation // punctuation
typedef struct punctuation_s typedef struct punctuation_s
{ {
char *p; // punctuation character(s) const char *p; // punctuation character(s)
int n; // punctuation id int n; // punctuation id
} punctuation_t; } punctuation_t;