summaryrefslogtreecommitdiffstats
path: root/crypto_buffer_get.c
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-12-06 01:39:33 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2014-12-06 01:39:33 +0100
commit6533e74370acfa51653608b1dc5e1292c72970c9 (patch)
treedbd3b13cb10df6f341a82a5a449fcf5a4b9d9b66 /crypto_buffer_get.c
parenta583bb24fb23728c9c4ed6c6c573d526ab654c49 (diff)
downloadcrypto-6533e74370acfa51653608b1dc5e1292c72970c9.zip
crypto-6533e74370acfa51653608b1dc5e1292c72970c9.tar.gz
remove extra spaces
Diffstat (limited to 'crypto_buffer_get.c')
-rw-r--r--crypto_buffer_get.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto_buffer_get.c b/crypto_buffer_get.c
index 33e99f0..b2b5ad8 100644
--- a/crypto_buffer_get.c
+++ b/crypto_buffer_get.c
@@ -111,7 +111,7 @@ static int eatinfo(crypto_buffer *s, u8* start)
static int getthis(crypto_buffer *s, u8 *buf, u32 len)
{
int available;
-
+
available = s->c_end - s->c_ptr;
if (len > available) len = available;
memcpy(buf, s->c_ptr, len);