diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-07 16:22:35 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-07 16:22:35 +0200 |
commit | 12596736e98355fb64702270554e7911dd0d520d (patch) | |
tree | 5d81f1bdcc7bdea61ccbdcc1b9644fa2c760df23 /sys/src/libaml | |
parent | ad1edf75418797d444e419cb21af710e9546b6f2 (diff) |
libaml: fix formating
Diffstat (limited to 'sys/src/libaml')
-rw-r--r-- | sys/src/libaml/aml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/libaml/aml.c b/sys/src/libaml/aml.c index e90e711f7..8615c6c1c 100644 --- a/sys/src/libaml/aml.c +++ b/sys/src/libaml/aml.c @@ -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); |