From 7f4ebe3fb834f8f707e2bdc86a612b2fcf9c9547 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 11 Sep 2019 10:17:47 -0400 Subject: [PATCH] typo --- afsk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/main.c b/afsk/main.c index da673fc6..1fe33ec3 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -239,7 +239,7 @@ int main(void) { { char cmdbuffer[1000]; strcat(str,footer_str); - fprint("String to execute: %s\n", str); + fprintf("String to execute: %s\n", str); FILE* file2 = popen(str, "r"); fgets(cmdbuffer, 999, file2); pclose(file2);