From f71ffe4b4c4035b127e846e4cb657c1ae36317fb Mon Sep 17 00:00:00 2001
From: Chris Maffeo <cmaffeo2@illinois.edu>
Date: Wed, 20 Mar 2019 17:15:00 -0500
Subject: [PATCH] Added better error message when loadCoordinates references
 nonexistant file

---
 src/Configuration.cpp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/Configuration.cpp b/src/Configuration.cpp
index 5f28623..e951093 100644
--- a/src/Configuration.cpp
+++ b/src/Configuration.cpp
@@ -1814,7 +1814,11 @@ bool Configuration::loadCoordinates(const char* file_name) {
 	char line[STRLEN];
 	FILE* inp = fopen(file_name, "r");
 
-	if (inp == NULL) return false;
+	if (inp == NULL) {
+	    printf("ERROR: Could not open file for reading: %s\n", file_name);
+	    exit(-1);
+	    return false;
+	}
 
 	int count = 0;
 	while (fgets(line, STRLEN, inp) != NULL) {
-- 
GitLab