diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-07-17 12:45:13 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-07-17 12:45:13 +0200 |
| commit | 0931f95e65fdf02cb4454501d6e7fd209fb8616e (patch) | |
| tree | 503aee637c494310c13ecac4b286e286537f0fb5 /src | |
| parent | 83997e1125a9f0232cb53f97323e0fa83418ee9d (diff) | |
| download | box64-0931f95e65fdf02cb4454501d6e7fd209fb8616e.tar.gz box64-0931f95e65fdf02cb4454501d6e7fd209fb8616e.zip | |
Fixed a typo
Diffstat (limited to 'src')
| -rwxr-xr-x | src/main.c | 2 |
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; } |