fix indentation

This commit is contained in:
Brian Paul 2004-10-02 15:56:50 +00:00
parent cbef8c4776
commit 289ffee2a0
1 changed files with 6 additions and 12 deletions

View File

@ -2771,29 +2771,23 @@ void grammar_get_last_error (byte *text, unsigned int size, int *pos)
}\
}
if (p)
{
while (*p)
{
if (*p == '$')
{
if (p) {
while (*p) {
if (*p == '$') {
const byte *r = error_param;
while (*r)
{
while (*r) {
APPEND_CHARACTER(*r)
r++;
}
p++;
}
else
{
else {
APPEND_CHARACTER(*p)
p++;
}
}
}
}
*pos = error_position;
#undef APPEND_CHARACTER