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/146f0cca9818
branches: trunk
changeset: 353885:146f0cca9818
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 b66637dfc80b -r 146f0cca9818 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