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 /src/wine.c | |
parent | a65cd5add177b4a883b308dc3b9504e93abeeca7 (diff) | |
download | polecat-26b0417ced82ad849e08db8e8aed0d5529c2b433.tar.gz polecat-26b0417ced82ad849e08db8e8aed0d5529c2b433.zip |
fix compiler warning, replace bin,obj ignore with build
Diffstat (limited to 'src/wine.c')
-rw-r--r-- | src/wine.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |