summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/replaygain.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-11-15 11:24:34 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-11-17 01:54:46 -0500
commit972810f6cfd9715de1b182978c4d26e67dcf72cf (patch)
tree71b62ce1bb22cfb5ea8974667b0b74bb1697fe9e /lib/rbcodec/metadata/replaygain.c
parent0b7a387671a56a1b526b3672cd695b5764597f3e (diff)
downloadrockbox-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 'lib/rbcodec/metadata/replaygain.c')
-rw-r--r--lib/rbcodec/metadata/replaygain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/metadata/replaygain.c b/lib/rbcodec/metadata/replaygain.c
index eb98bbc342..d76a1113ea 100644
--- a/lib/rbcodec/metadata/replaygain.c
+++ b/lib/rbcodec/metadata/replaygain.c
@@ -26,7 +26,7 @@
26#include <stdlib.h> 26#include <stdlib.h>
27#include <inttypes.h> 27#include <inttypes.h>
28#include "platform.h" 28#include "platform.h"
29#include "strlcpy.h" 29#include "string-extra.h"
30#include "strcasecmp.h" 30#include "strcasecmp.h"
31#include "metadata.h" 31#include "metadata.h"
32#include "debug.h" 32#include "debug.h"