From: Anssi Hannula Date: Tue, 18 Mar 2014 23:26:01 +0000 (+0200) Subject: depmod: fix debug print parameter order X-Git-Tag: v17~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27881f6fbcb0686463f747fbcb8523b20535236a;p=thirdparty%2Fkmod.git depmod: fix debug print parameter order --- diff --git a/tools/depmod.c b/tools/depmod.c index 9f83ee85..6b5d21c8 100644 --- a/tools/depmod.c +++ b/tools/depmod.c @@ -1167,7 +1167,7 @@ static int depmod_module_is_higher_priority(const struct depmod *depmod, const s oldprio = bprio; DBG("priorities: built-in: %d, old: %d, new: %d\n", - bprio, newprio, oldprio); + bprio, oldprio, newprio); return newprio <= oldprio; }