diff mbox series

[FFmpeg-devel,1/4] fftools/ffprobe: Don't cast const away needlessly

Message ID AS8P250MB07449ED193913254953B92678F562@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 0f20e48e3d3efbb012d16bd2a26a68f7c98bb8ea
Headers show
Series [FFmpeg-devel,1/4] fftools/ffprobe: Don't cast const away needlessly | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
yinshiyou/make_fate_loongarch64 success Make fate finished

Commit Message

Andreas Rheinhardt Feb. 22, 2024, 12:30 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 fftools/ffprobe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Rheinhardt Feb. 24, 2024, 2:52 a.m. UTC | #1
Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  fftools/ffprobe.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
> index aa1153e709..95643f9a23 100644
> --- a/fftools/ffprobe.c
> +++ b/fftools/ffprobe.c
> @@ -789,7 +789,7 @@ static inline int validate_string(WriterContext *wctx, char **dstp, const char *
>      av_bprint_init(&dstbuf, 0, AV_BPRINT_SIZE_UNLIMITED);
>  
>      endp = src + strlen(src);
> -    for (p = (uint8_t *)src; *p;) {
> +    for (p = src; *p;) {
>          uint32_t code;
>          int invalid = 0;
>          const uint8_t *p0 = p;

Will apply this patchset tomorrow unless there are objections.

- Andreas
diff mbox series

Patch

diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index aa1153e709..95643f9a23 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -789,7 +789,7 @@  static inline int validate_string(WriterContext *wctx, char **dstp, const char *
     av_bprint_init(&dstbuf, 0, AV_BPRINT_SIZE_UNLIMITED);
 
     endp = src + strlen(src);
-    for (p = (uint8_t *)src; *p;) {
+    for (p = src; *p;) {
         uint32_t code;
         int invalid = 0;
         const uint8_t *p0 = p;