aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-08 23:47:11 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-08 23:47:11 +0000
commit5029a5333a53935e9c088106265698f28b1e60c1 (patch)
tree0e5308175799ff73d3fb7f1d32002ebedd23ef5b /src/scalarproduct
parent3dde93322707a48a118f6501c3c9d750710b8799 (diff)
downloadgnunet-5029a5333a53935e9c088106265698f28b1e60c1.tar.gz
gnunet-5029a5333a53935e9c088106265698f28b1e60c1.zip
-clarify prescedence
Diffstat (limited to 'src/scalarproduct')
-rw-r--r--src/scalarproduct/gnunet-scalarproduct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scalarproduct/gnunet-scalarproduct.c b/src/scalarproduct/gnunet-scalarproduct.c
index 5fabb7f6e..012ce91b8 100644
--- a/src/scalarproduct/gnunet-scalarproduct.c
+++ b/src/scalarproduct/gnunet-scalarproduct.c
@@ -307,7 +307,7 @@ run (void *cls,
307 } 307 }
308 while (1); 308 while (1);
309 309
310 mask_bytes = element_count / 8 + (element_count % 8 ? 1 : 0); 310 mask_bytes = element_count / 8 + ( (element_count % 8) ? 1 : 0);
311 mask = GNUNET_malloc ((element_count / 8) + 1); 311 mask = GNUNET_malloc ((element_count / 8) + 1);
312 312
313 /* Read input_mask_peer1 and read in mask_peer1 array */ 313 /* Read input_mask_peer1 and read in mask_peer1 array */