aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dan@danw.org>2016-10-20 17:23:27 -0700
committerGitHub <noreply@github.com>2016-10-20 17:23:27 -0700
commitcbddec052bf068537d2c2a37b9af1c76d80cdd7c (patch)
tree93c66a830edd405fe09de48bdbb910a12bf0d705
parentf082e5bc14e57557c48399d9a441ccb63b44f6da (diff)
parentf09d21d8b406bed732ec0254d5083e636e394151 (diff)
Merge pull request #102 from danw/typo
Fix typo in regen_dump.cc
-rw-r--r--regen_dump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/regen_dump.cc b/regen_dump.cc
index 9838ab5..7a515f5 100644
--- a/regen_dump.cc
+++ b/regen_dump.cc
@@ -48,7 +48,7 @@ int main(int argc, char* argv[]) {
ERROR("Incomplete stamp file");
for (int i = 0; i < num_files; i++) {
string s;
- if (!LoadString(fp, s))
+ if (!LoadString(fp, &s))
ERROR("Incomplete stamp file");
printf("%s\n", s.c_str());
}