Fix typo in goban

Pointer wasn't dereferenced as it should be.

Change-Id: I4b4993fef2290c22ab8f36ba8aafe7dcafcbfa2e
This commit is contained in:
Franklin Wei 2017-09-01 22:00:59 -04:00
parent 34dd278758
commit 5a724bb6dc

View file

@ -712,7 +712,7 @@ handle_prop_value (enum prop_type_t type)
++buffer; ++buffer;
} }
if (buffer != '\0') if (*buffer != '\0')
{ {
++buffer; ++buffer;