diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-24 10:47:42 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-24 10:47:42 +0100 |
commit | 32bad3183aa5045e2ab8a0da92d4b7a8802d4aad (patch) | |
tree | bf9e814c7829afd11c8a0e9302c3a6f12a3af893 /src | |
parent | 36ea927cff712233b875ffddcf7577499273e8ad (diff) | |
download | ouroboros-32bad3183aa5045e2ab8a0da92d4b7a8802d4aad.tar.gz ouroboros-32bad3183aa5045e2ab8a0da92d4b7a8802d4aad.zip |
lib: Fixed syntax formatting in du_buff
forgot spaces before/after +
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/du_buff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/du_buff.c b/src/lib/du_buff.c index 5756ba27..eace2d02 100644 --- a/src/lib/du_buff.c +++ b/src/lib/du_buff.c @@ -190,7 +190,7 @@ int buffer_copy_data(struct buffer * head, buf_end = buffer_seek(head, pos + len); if (buf_start == NULL || buf_end == NULL) { - LOG_DBGF("Index out of bounds %llu, %llu", pos, pos+len); + LOG_DBGF("Index out of bounds %llu, %llu", pos, pos + len); return -EINVAL; } |