summaryrefslogtreecommitdiff
path: root/apps/plugins/goban/sgf_storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/goban/sgf_storage.c')
-rw-r--r--apps/plugins/goban/sgf_storage.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/plugins/goban/sgf_storage.c b/apps/plugins/goban/sgf_storage.c
index 1c92625f7d..8afc3ea80f 100644
--- a/apps/plugins/goban/sgf_storage.c
+++ b/apps/plugins/goban/sgf_storage.c
@@ -409,7 +409,6 @@ setup_storage_buffer (char *temp_buffer, size_t size)
409 } 409 }
410 410
411 /* same as temp = size / (sizeof(union storage_t) + 1/8) 411 /* same as temp = size / (sizeof(union storage_t) + 1/8)
412
413 (we need 1 bit extra for each union storage_t, for the free list) */ 412 (we need 1 bit extra for each union storage_t, for the free list) */
414 temp = 413 temp =
415 (8 * (size - ALIGNMENT_VAL - 1)) / (8 * sizeof (union storage_t) + 1); 414 (8 * (size - ALIGNMENT_VAL - 1)) / (8 * sizeof (union storage_t) + 1);