mirror of https://git.ffmpeg.org/ffmpeg.git
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)
|
||||
{
|
||||
char *p;
|
||||
#if HAVE_DOS_PATHS
|
||||
char *q, *d;
|
||||
#endif
|
||||
|
||||
if (!path || *path == '\0')
|
||||
return ".";
|
||||
|
||||
p = strrchr(path, '/');
|
||||
#if HAVE_DOS_PATHS
|
||||
char *q = strrchr(path, '\\');
|
||||
char *d = strchr(path, ':');
|
||||
|
||||
q = strrchr(path, '\\');
|
||||
d = strchr(path, ':');
|
||||
p = FFMAX3(p, q, d);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue