diff options
Diffstat (limited to 'storage/xtradb/pars/pars0lex.l')
-rw-r--r-- | storage/xtradb/pars/pars0lex.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/xtradb/pars/pars0lex.l b/storage/xtradb/pars/pars0lex.l index 38cb744bd44..4abff65e98b 100644 --- a/storage/xtradb/pars/pars0lex.l +++ b/storage/xtradb/pars/pars0lex.l @@ -70,13 +70,13 @@ Created 12/14/1997 Heikki Tuuri static ulint stringbuf_len_alloc = 0; /* Allocated length */ static ulint stringbuf_len = 0; /* Current length */ static char* stringbuf; /* Start of buffer */ -/* Appends a string to the buffer. */ +/** Appends a string to the buffer. */ static void string_append( /*==========*/ - const char* str, /* in: string to be appended */ - ulint len) /* in: length of the string */ + const char* str, /*!< in: string to be appended */ + ulint len) /*!< in: length of the string */ { if (stringbuf == NULL) { stringbuf = malloc(1); |