From 8c6c17b5fbb6fca98ac4e226c50d017bca6c4712 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 11 Jul 2021 18:36:15 -0400 Subject: [PATCH] telem_file typo --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 43c5ce42..69a8bf33 100644 --- a/main.c +++ b/main.c @@ -107,7 +107,7 @@ int main(int argc, char * argv[]) { } // Open telemetry file with STEM Payload Data - *telem_file = fopen("/home/pi/CubeSatSim/telem.txt", "a"); + telem_file = fopen("/home/pi/CubeSatSim/telem.txt", "a"); if (telem_file == NULL) printf("Error opening telem file\n"); fclose(telem_file);