summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2022-07-30 18:09:08 +0000
committerChristos Zoulas <christos@zoulas.com>2022-07-30 18:09:08 +0000
commit89cb08d8cad5b6257db61b09bdd29812938b2f71 (patch)
tree974d69c512144011dc0764ca4ae5ebd72cf9dcc4
parenteeae5ee84ccddbc23d374d62d991a7ec2ab83953 (diff)
downloadfile-git-89cb08d8cad5b6257db61b09bdd29812938b2f71.tar.gz
Add missing newline in debug message
-rw-r--r--src/softmagic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/softmagic.c b/src/softmagic.c
index 5e49afb7..0d677951 100644
--- a/src/softmagic.c
+++ b/src/softmagic.c
@@ -32,7 +32,7 @@
#include "file.h"
#ifndef lint
-FILE_RCSID("@(#)$File: softmagic.c,v 1.323 2022/05/28 00:44:22 christos Exp $")
+FILE_RCSID("@(#)$File: softmagic.c,v 1.324 2022/07/30 18:09:08 christos Exp $")
#endif /* lint */
#include "magic.h"
@@ -2279,7 +2279,7 @@ magiccheck(struct magic_set *ms, struct magic *m, file_regex_t **m_cache)
if (matched == -1) {
if ((ms->flags & MAGIC_DEBUG) != 0) {
(void) fprintf(stderr,
- "EOF comparing DER entries");
+ "EOF comparing DER entries\n");
}
return 0;
}