From a0bf19d0dfe1af3540c09796b1d860e5e998bd60 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jul 2013 06:27:17 +0000 Subject: [PATCH] A style fix for C++11 This patch is given by Nico (thanks!) git-svn-id: https://google-glog.googlecode.com/svn/trunk@137 eb4d4688-79bd-11dd-afb4-1d65580434c0 --- src/symbolize.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symbolize.cc b/src/symbolize.cc index b69eefd..18bbccf 100644 --- a/src/symbolize.cc +++ b/src/symbolize.cc @@ -232,7 +232,7 @@ bool GetSectionHeaderByName(int fd, const char *name, size_t name_len, } char header_name[kMaxSectionNameLen]; if (sizeof(header_name) < name_len) { - RAW_LOG(WARNING, "Section name '%s' is too long (%"PRIuS"); " + RAW_LOG(WARNING, "Section name '%s' is too long (%" PRIuS "); " "section will not be found (even if present).", name, name_len); // No point in even trying. return false; -- 2.7.4