From 6e84cf31d234ba0708cd4941120243c980b093c6 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 11 Sep 2019 16:08:02 -0400 Subject: [PATCH] fixed typo in fprintf --- afsk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/main.c b/afsk/main.c index 87c108e7..ab59ab2a 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -241,7 +241,7 @@ int main(void) { { char cmdbuffer[1000]; strcat(str,footer_str); -// fprintf("String to execute: %s\n", str); + fprintf(stderr, "String to execute: %s\n", str); FILE* file2 = popen(str, "r"); fgets(cmdbuffer, 999, file2); pclose(file2);