From 6ed01e001ed012d29387085c1fa89da69d27c7b4 Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Tue, 15 Mar 2011 22:16:29 +0000 Subject: [PATCH] wrap long lines --- src/ascmagic.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ascmagic.c b/src/ascmagic.c index c1c6650e..67a75dfe 100644 --- a/src/ascmagic.c +++ b/src/ascmagic.c @@ -35,7 +35,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: ascmagic.c,v 1.79 2011/02/10 02:22:58 christos Exp $") +FILE_RCSID("@(#)$File: ascmagic.c,v 1.80 2011/03/12 18:13:54 rrt Exp $") #endif /* lint */ #include "magic.h" @@ -149,10 +149,11 @@ file_ascmagic_with_encoding(struct magic_set *ms, const unsigned char *buf, file_oomem(ms, mlen); goto done; } - if ((utf8_end = encode_utf8(utf8_buf, mlen, ubuf, ulen)) == NULL) + if ((utf8_end = encode_utf8(utf8_buf, mlen, ubuf, ulen)) + == NULL) goto done; - if ((rv = file_softmagic(ms, utf8_buf, (size_t)(utf8_end - utf8_buf), - TEXTTEST)) != 0) + if ((rv = file_softmagic(ms, utf8_buf, + (size_t)(utf8_end - utf8_buf), TEXTTEST)) != 0) goto subtype_identified; else rv = -1; -- 2.40.0