about summary refs log tree commit diff
path: root/src/portab/strndup.c
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-03-16 22:11:26 +0100
committerAlexander Barton <alex@barton.de>2014-03-16 22:11:26 +0100
commit43fb18f2f5a506c4d78967e4b6e961b7339c98dc (patch)
treef729b253ab48ae0dede29b15a0bac395770fadcf /src/portab/strndup.c
parenta4ed90ba9af1dce4df3f57f6a7c84097000c7256 (diff)
downloadngircd-43fb18f2f5a506c4d78967e4b6e961b7339c98dc.tar.gz
ngircd-43fb18f2f5a506c4d78967e4b6e961b7339c98dc.zip
Code cleanup, remove blank lines
Diffstat (limited to 'src/portab/strndup.c')
-rw-r--r--src/portab/strndup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portab/strndup.c b/src/portab/strndup.c
index d6e01c94..578f324c 100644
--- a/src/portab/strndup.c
+++ b/src/portab/strndup.c
@@ -30,8 +30,8 @@ strndup(const char *s, size_t maxlen)
 	dup = malloc(len);
 	if (dup)
 		strlcpy(dup, s, len);
+
 	return dup;
 }
 
 #endif
-