From 3da83e3ffee0efc83676bd8410a48924a4344402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laci=20b=C3=A1?= Date: Fri, 27 Aug 2021 09:09:46 +0200 Subject: [PATCH] Fix a typo in initialization of `ltemp` --- src/86box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index 155c5925a..452e9b448 100644 --- a/src/86box.c +++ b/src/86box.c @@ -567,7 +567,7 @@ usage: */ if (strlen(vm_name) == 0) { - char ltemp[1024] = {'/0'}; + char ltemp[1024] = { '\0'}; plat_get_dirname(ltemp, usr_path); strcpy(vm_name, plat_get_filename(ltemp)); }