mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avutil/avstring: Fix warning: ISO C90 forbids mixed declarations and code
Signed-off-by: Limin Wang <lance.lmwang@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
72a08af8ba
commit
44a80897e8
@ -258,15 +258,17 @@ char *av_strireplace(const char *str, const char *from, const char *to)
|
|||||||
const char *av_basename(const char *path)
|
const char *av_basename(const char *path)
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
|
#if HAVE_DOS_PATHS
|
||||||
|
char *q, *d;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!path || *path == '\0')
|
if (!path || *path == '\0')
|
||||||
return ".";
|
return ".";
|
||||||
|
|
||||||
p = strrchr(path, '/');
|
p = strrchr(path, '/');
|
||||||
#if HAVE_DOS_PATHS
|
#if HAVE_DOS_PATHS
|
||||||
char *q = strrchr(path, '\\');
|
q = strrchr(path, '\\');
|
||||||
char *d = strchr(path, ':');
|
d = strchr(path, ':');
|
||||||
|
|
||||||
p = FFMAX3(p, q, d);
|
p = FFMAX3(p, q, d);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user