about summary refs log tree commit diff stats
path: root/src/core.c
diff options
context:
space:
mode:
authorjosch <josch@mister-muffin.de>2024-07-10 10:06:02 +0100
committerGitHub <noreply@github.com>2024-07-10 11:06:02 +0200
commitdfc60e8bf1aa20144c6dde5a3b1017c46c44f2e0 (patch)
tree88bad28e7ec7de5733dcc0da9460786abfb93268 /src/core.c
parent655e752c0765d32b10244324588db1c168d0d0c8 (diff)
downloadbox64-dfc60e8bf1aa20144c6dde5a3b1017c46c44f2e0.tar.gz
box64-dfc60e8bf1aa20144c6dde5a3b1017c46c44f2e0.zip
fix some spelling (#1668)
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index 9ea4632b..1a9262c4 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1423,7 +1423,7 @@ void LoadEnvVars(box64context_t *context)
     if(getenv("BOX64_SYNC_ROUNDING")) {
         if (strcmp(getenv("BOX64_SYNC_ROUNDING"), "1")==0) {
             box64_sync_rounding = 1;
-            printf_log(LOG_INFO, "BOX64: Rouding mode with be synced with fesetround/fegetround\n");
+            printf_log(LOG_INFO, "BOX64: Rounding mode will be synced with fesetround/fegetround\n");
         }
     }
     if(getenv("BOX64_PREFER_WRAPPED")) {
@@ -1672,7 +1672,7 @@ static void add_argv(const char* what) {
         if(!strcmp(my_context->argv[i], what))
             there = 1;
     if(!there) {
-        printf_log(LOG_INFO, "Inserting \"%s\" to the argments\n", what);
+        printf_log(LOG_INFO, "Inserting \"%s\" to the arguments\n", what);
         my_context->argv = (char**)box_realloc(my_context->argv, (my_context->argc+1)*sizeof(char*));
         my_context->argv[my_context->argc] = box_strdup(what);
         my_context->argc++;