From 66a6871d66c5d7719a0a3f246fce2c5eee2b3f22 Mon Sep 17 00:00:00 2001 From: Yuqiao Zeng Date: Sat, 2 Feb 2019 23:11:17 -0500 Subject: [PATCH] Typo fix: File does not exist --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 05d4bd9..2145f43 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -70,7 +70,7 @@ int loadPath( DrawSVG* drawsvg, const char* path) { // file exist? if(stat(path, &st) < 0 ) { - msg("File does not exit: " << path); + msg("File does not exist: " << path); return -1; } -- GitLab