aboutsummaryrefslogtreecommitdiff
path: root/src/util/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/strings.c')
-rw-r--r--src/util/strings.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util/strings.c b/src/util/strings.c
index 9856a15c4..de32b1c03 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -803,11 +803,6 @@ GNUNET_STRINGS_data_to_string (const void *data, size_t size, char *out, size_t
803 out[wpos++] = encTable__[(bits >> (vbit - 5)) & 31]; 803 out[wpos++] = encTable__[(bits >> (vbit - 5)) & 31];
804 vbit -= 5; 804 vbit -= 5;
805 } 805 }
806 if (wpos != out_size)
807 {
808 GNUNET_break (0);
809 return NULL;
810 }
811 GNUNET_assert (vbit == 0); 806 GNUNET_assert (vbit == 0);
812 return &out[wpos]; 807 return &out[wpos];
813} 808}