aboutsummaryrefslogtreecommitdiff
path: root/toys/sha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/sha1.c')
-rw-r--r--toys/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/sha1.c b/toys/sha1.c
index 77228afb..7c598c88 100644
--- a/toys/sha1.c
+++ b/toys/sha1.c
@@ -46,7 +46,7 @@ void printy(unsigned char *this)
int i;
for (i = 0; i < 20; i++) printf("%02x", this[i]);
- putchar('\n');
+ xputc('\n');
}
/* Hash a single 512-bit block. This is the core of the algorithm. */