Fix typo in goban
Pointer wasn't dereferenced as it should be. Change-Id: I4b4993fef2290c22ab8f36ba8aafe7dcafcbfa2e
This commit is contained in:
parent
34dd278758
commit
5a724bb6dc
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ handle_prop_value (enum prop_type_t type)
|
|||
++buffer;
|
||||
}
|
||||
|
||||
if (buffer != '\0')
|
||||
if (*buffer != '\0')
|
||||
{
|
||||
++buffer;
|
||||
|
||||
|
|
Loading…
Reference in a new issue