Skip to content

Commit

Permalink
A style fix for C++11
Browse files Browse the repository at this point in the history
This patch is given by Nico (thanks!)
  • Loading branch information
shinh committed Jul 29, 2013
1 parent 9a3522d commit 4a26081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbolize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4a26081

Please sign in to comment.