aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-02-25 18:23:21 -0500
committerAdam Harrison <adamdharrison@gmail.com>2024-02-25 18:23:21 -0500
commit0cb1baaf5054e03b93fadb02ef3411dffe9ca2e9 (patch)
tree665b807b44c8513c66e61bd9410c82e52f7780e8 /src
parenta2e6b6b52593bd02e0de53580206fb6942643bda (diff)
downloadlite-xl-plugin-manager-0cb1baaf5054e03b93fadb02ef3411dffe9ca2e9.tar.gz
lite-xl-plugin-manager-0cb1baaf5054e03b93fadb02ef3411dffe9ca2e9.zip
Changed bzero to memset, in order to eliminate warnings on windows.
Diffstat (limited to 'src')
-rw-r--r--src/lpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.c b/src/lpm.c
index 595ec8c..e287808 100644
--- a/src/lpm.c
+++ b/src/lpm.c
@@ -918,7 +918,7 @@ static int lpm_extract(lua_State* L) {
if (current_read[strlen(last_read) + read_size - 1] != '\n')
strcpy(last_read, strtok_r(current_read, "\n", l_line_ptr));
else
- bzero(last_read, strlen(last_read));
+ memset(last_read, 0, strlen(last_read));
}
}