Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/cddl/osnet/dist/lib/libuutil/common Fix argument or...



details:   https://anonhg.NetBSD.org/src/rev/e8fb9d215f62
branches:  trunk
changeset: 824186:e8fb9d215f62
user:      joerg <joerg%NetBSD.org@localhost>
date:      Fri May 26 22:50:35 2017 +0000

description:
Fix argument order.

diffstat:

 external/cddl/osnet/dist/lib/libuutil/common/uu_misc.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 60602aa16de5 -r e8fb9d215f62 external/cddl/osnet/dist/lib/libuutil/common/uu_misc.c
--- a/external/cddl/osnet/dist/lib/libuutil/common/uu_misc.c    Fri May 26 21:17:46 2017 +0000
+++ b/external/cddl/osnet/dist/lib/libuutil/common/uu_misc.c    Fri May 26 22:50:35 2017 +0000
@@ -211,7 +211,7 @@
 int
 assfail(const char *astring, const char *file, int line)
 {
-       __assert(astring, file, line);
+       __assert(file, line, astring);
        /*NOTREACHED*/
        return (0);
 }



Home | Main Index | Thread Index | Old Index