libaml: fix formating

This commit is contained in:
cinap_lenrek 2013-09-07 16:22:35 +02:00
parent ad1edf7541
commit 12596736e9

View file

@ -722,7 +722,8 @@ copy(int tag, void *s)
case 'b':
if(TAG(s) == 's'){
n = strlen(s);
/* zero length string is converted to zero length buffer */ if(n > 0) n++;
/* zero length string is converted to zero length buffer */
if(n > 0) n++;
}
d = mk(tag, n);
memmove(d, s, n);