Skip to content

Commit a627abc

Browse files
committed
Fix compile warning.
1 parent e1e5be3 commit a627abc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

external/hidapi/hid.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
https://github.com/libusb/hidapi .
2121
********************************************************/
2222

23+
#include "../../src/direwolf.h" // for strlcpy
24+
2325
#include <windows.h>
2426

2527
#ifndef _NTDEF_
@@ -465,7 +467,8 @@ struct hid_device_info HID_API_EXPORT * HID_API_CALL hid_enumerate(unsigned shor
465467
if (str) {
466468
len = strlen(str);
467469
cur_dev->path = (char*) calloc(len+1, sizeof(char));
468-
strncpy(cur_dev->path, str, len+1);
470+
//strncpy(cur_dev->path, str, len+1); // produces warning
471+
strlcpy(cur_dev->path, str, len+1);
469472
cur_dev->path[len] = '\0';
470473
}
471474
else

0 commit comments

Comments
 (0)