about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-07-17 12:45:13 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-07-17 12:45:13 +0200
commit0931f95e65fdf02cb4454501d6e7fd209fb8616e (patch)
tree503aee637c494310c13ecac4b286e286537f0fb5 /src
parent83997e1125a9f0232cb53f97323e0fa83418ee9d (diff)
downloadbox64-0931f95e65fdf02cb4454501d6e7fd209fb8616e.tar.gz
box64-0931f95e65fdf02cb4454501d6e7fd209fb8616e.zip
Fixed a typo
Diffstat (limited to 'src')
-rwxr-xr-xsrc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index eeb4ca73..719ed76a 100755
--- a/src/main.c
+++ b/src/main.c
@@ -752,7 +752,7 @@ void addNewEnvVar(const char* s)
     char* p = strdup(s);
     char* e = strchr(p, '=');
     if(!e) {
-        printf_log(LOG_INFO, "Invalid speicifc env. var. '%s'\n", s);
+        printf_log(LOG_INFO, "Invalid specific env. var. '%s'\n", s);
         free(p);
         return;
     }