From 59c23a872af7612d1f9f43e41e8a7d9f716ae2fd Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 11 Apr 2014 17:43:34 -0400 Subject: [PATCH] Minor fixes and rewordings --- make_bit | 2 +- strtod.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/make_bit b/make_bit index e58a887..834ba3e 100644 --- a/make_bit +++ b/make_bit @@ -1,6 +1,6 @@ push: @if [ "x$(MSG)" = 'x' ] ; then \ - echo "Usage: MSG='whatever.' make push"; fi + echo "Usage: MSG='your message here.' make push"; fi @test "x$(MSG)" != 'x' git commit -a -m "$(MSG)" git svn fetch diff --git a/strtod.c b/strtod.c index bae3585..36ae3e8 100644 --- a/strtod.c +++ b/strtod.c @@ -8,5 +8,5 @@ int main(int argc, char **argv){ double in = strtod(argv[1], &end); Stopif(*end, return 2, "I couldn't parse '%s' to a number. " "I had trouble with '%s'.", argv[1], end); - printf("The square of %g is %g\n", argv[1], pow(in, 2)); + printf("The square of %s is %g\n", argv[1], pow(in, 2)); } -- GitLab