Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Aug 2018 19:13:59 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478083 - head/net/libtrace/files
Message-ID:  <201808251913.w7PJDx9A094592@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sat Aug 25 19:13:59 2018
New Revision: 478083
URL: https://svnweb.freebsd.org/changeset/ports/478083

Log:
  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

Added:
  head/net/libtrace/files/
  head/net/libtrace/files/patch-tools_tracetop_tracetop.cc   (contents, props changed)

Added: head/net/libtrace/files/patch-tools_tracetop_tracetop.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/libtrace/files/patch-tools_tracetop_tracetop.cc	Sat Aug 25 19:13:59 2018	(r478083)
@@ -0,0 +1,21 @@
+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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808251913.w7PJDx9A094592>