A style fix for C++11
author <shinichiro.hamaji@gmail.com> <>
Mon, 29 Jul 2013 06:27:17 +0000 (06:27 +0000)
committer <shinichiro.hamaji@gmail.com> <>
Mon, 29 Jul 2013 06:27:17 +0000 (06:27 +0000)
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

index b69eefddbc05c406b667a987d58c3fc59ca7cd6c..18bbccf307213d5257c51205e08ff37095608259 100644 (file)
@@ -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;