aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-19 22:49:35 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-19 22:49:35 +0000
commitb3cdf80f723a239464dc4ee4477ddfd8e2c2f679 (patch)
tree581842d7119917a75fa55c2cfa45a7a6fe197e94
parentb08d34a822c0dc54381b64f8bbe05a6ce0419c40 (diff)
downloadgnunet-b3cdf80f723a239464dc4ee4477ddfd8e2c2f679.tar.gz
gnunet-b3cdf80f723a239464dc4ee4477ddfd8e2c2f679.zip
-and this is why the NULL comes FIRST
-rw-r--r--src/psyc/psyc_util_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/psyc/psyc_util_lib.c b/src/psyc/psyc_util_lib.c
index 6177976de..bd2466738 100644
--- a/src/psyc/psyc_util_lib.c
+++ b/src/psyc/psyc_util_lib.c
@@ -624,7 +624,7 @@ transmit_notify_env (void *cls, uint16_t *data_size, void *data, uint8_t *oper,
624 624
625 *data_size = value_size; 625 *data_size = value_size;
626 memcpy (data, value, value_size); 626 memcpy (data, value, value_size);
627 return (tmit->mod_value = NULL) ? GNUNET_YES : GNUNET_NO; 627 return (NULL == tmit->mod_value) ? GNUNET_YES : GNUNET_NO;
628 } 628 }
629} 629}
630 630