diff options
author | William Wilgus <wilgus.william@gmail.com> | 2022-11-15 11:24:34 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2022-11-17 01:54:46 -0500 |
commit | 972810f6cfd9715de1b182978c4d26e67dcf72cf (patch) | |
tree | 71b62ce1bb22cfb5ea8974667b0b74bb1697fe9e /firmware/drivers | |
parent | 0b7a387671a56a1b526b3672cd695b5764597f3e (diff) | |
download | rockbox-972810f6cfd9715de1b182978c4d26e67dcf72cf.tar.gz rockbox-972810f6cfd9715de1b182978c4d26e67dcf72cf.zip |
strlcpy finish cleanup
remove strlcpy & strlcat from string.h
document suspicious strlcpy call
convert strlcat.h users to string-extra
Change-Id: I313e75db86385c0e6d1aee75d252093be4935f60
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index 30d16f3666..20c8f2b8e0 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c | |||
@@ -22,7 +22,7 @@ | |||
22 | #include "config.h" | 22 | #include "config.h" |
23 | #include "system.h" | 23 | #include "system.h" |
24 | #include "sys/types.h" | 24 | #include "sys/types.h" |
25 | #include <string.h> | 25 | #include "string-extra.h" |
26 | #include <ctype.h> | 26 | #include <ctype.h> |
27 | #include <stdlib.h> | 27 | #include <stdlib.h> |
28 | #include <stdio.h> | 28 | #include <stdio.h> |