Subject: compiling -current on amd64...
To: None <current-users@netbsd.org>
From: Kurt Schreiner <ks@ub.uni-mainz.de>
List: current-users
Date: 12/07/2005 11:14:17
...needs the following patch to finish successfully:
>-119: diff -u1 lmcconfig.c*
--- lmcconfig.c.old 2005-12-07 11:09:24.000000000 +0100
+++ lmcconfig.c 2005-12-07 10:57:24.000000000 +0100
@@ -1110,3 +1110,3 @@
if (status.cntrs.ipackets) printf("Rx packets:\t\t%llu\n", (unsigned long long)status.cntrs.ipackets);
- if (status.cntrs.opackets) printf("Tx packets:\t\t%llu\n", status.cntrs.opackets);
+ if (status.cntrs.opackets) printf("Tx packets:\t\t%llu\n", (unsigned long long)status.cntrs.opackets);
if (status.cntrs.ierrors) printf("Rx errors:\t\t%u\n", status.cntrs.ierrors);
Kurt