1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/net/libtrace/files/patch-tools_tracetop_tracetop.cc
Tobias Kortkamp c092b3dcd3 net/libtrace: Fix build with Clang 6
tracetop.cc:380:16: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
                                printw("%7"PRIu64"\t%7"PRIu64"\n",
                                           ^

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/libtrace-3.0.19_2.log
2018-08-25 19:13:59 +00:00

22 lines
754 B
C++

tracetop.cc:380:16: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
printw("%7"PRIu64"\t%7"PRIu64"\n",
^
--- tools/tracetop/tracetop.cc.orig 2018-08-25 19:01:36 UTC
+++ tools/tracetop/tracetop.cc
@@ -377,12 +377,12 @@ static void do_report()
}
switch (display_as) {
case BYTES:
- printw("%7"PRIu64"\t%7"PRIu64"\n",
+ printw("%7" PRIu64 "\t%7" PRIu64 "\n",
pq.top().bytes,
pq.top().packets);
break;
case BITS_PER_SEC:
- printw("%14.03f\t%"PRIu64"\n",
+ printw("%14.03f\t%" PRIu64 "\n",
8.0*pq.top().bytes/interval,
pq.top().packets);
break;