summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-09-01 22:00:59 -0400
committerFranklin Wei <git@fwei.tk>2017-09-01 22:00:59 -0400
commit5a724bb6dc6ea32cfb858fcb3ec09797413cdf46 (patch)
treec5cd645cfd79a63164bb8a1884c3037ca95d7057 /apps
parent34dd2787589fd8672ce1fbb31c9f9579e4459ac8 (diff)
downloadrockbox-5a724bb6dc6ea32cfb858fcb3ec09797413cdf46.tar.gz
rockbox-5a724bb6dc6ea32cfb858fcb3ec09797413cdf46.zip
Fix typo in goban
Pointer wasn't dereferenced as it should be. Change-Id: I4b4993fef2290c22ab8f36ba8aafe7dcafcbfa2e
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/goban/sgf_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/goban/sgf_parse.c b/apps/plugins/goban/sgf_parse.c
index a2b11cf490..58a517142f 100644
--- a/apps/plugins/goban/sgf_parse.c
+++ b/apps/plugins/goban/sgf_parse.c
@@ -712,7 +712,7 @@ handle_prop_value (enum prop_type_t type)
++buffer;
}
- if (buffer != '\0')
+ if (*buffer != '\0')
{
++buffer;