diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-10-05 17:21:06 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-10-05 17:21:06 +0200 |
commit | 26b0417ced82ad849e08db8e8aed0d5529c2b433 (patch) | |
tree | 02919ad1eae7470b893ecb511c23b6373216bfaf | |
parent | a65cd5add177b4a883b308dc3b9504e93abeeca7 (diff) | |
download | polecat-26b0417ced82ad849e08db8e8aed0d5529c2b433.tar.gz polecat-26b0417ced82ad849e08db8e8aed0d5529c2b433.zip |
fix compiler warning, replace bin,obj ignore with build
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | src/wine.c | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,3 @@ -bin -obj +build *.tar* zig-cache @@ -71,7 +71,7 @@ int wine_download(int argc, char** argv) getDataDir(datadir, sizeof(datadir)); makeDir(datadir); - strncpy(downloadpath, datadir, sizeof(downloadpath) - 1); + strncpy(downloadpath, datadir, sizeof(downloadpath)); strncat(downloadpath, "/", sizeof(downloadpath) - strlen(downloadpath) - 1); strncat(downloadpath, name, sizeof(downloadpath) - strlen(downloadpath) - 1); |