aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-11-05 02:07:09 -0200
committerLucas De Marchi <lucas.demarchi@profusion.mobi>2012-11-05 02:08:16 -0200
commit96b50d362349d78b3dd452e80221ab6ed0563002 (patch)
treec9001170177e0b1fdbe536ce545096d06366cc95
parenta3f16ff70481e41796316115576f4a3875c98363 (diff)
downloadkmod-96b50d362349d78b3dd452e80221ab6ed0563002.tar.gz
depmod: add depmod prefix to log messages
-rw-r--r--tools/depmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depmod.c b/tools/depmod.c
index f2f0b77..410de3e 100644
--- a/tools/depmod.c
+++ b/tools/depmod.c
@@ -170,7 +170,7 @@ static void _log(int prio, const char *fmt, ...)
prioname = buf;
}
- fprintf(stderr, "%s: %s", prioname, msg);
+ fprintf(stderr, "depmod: %s: %s", prioname, msg);
free(msg);
if (prio <= LOG_CRIT)