diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-23 23:34:29 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-23 23:34:29 +0000 |
commit | e9a9e0c21090d18089d212c39e9249f9a7ed559c (patch) | |
tree | 2217ae1ac0279ebc6081549625fc2b0007d96515 /vhook/fish.c | |
parent | 0d4c587854097c1cf530d1d9fd0ff8bb231be427 (diff) | |
download | ffmpeg-e9a9e0c21090d18089d212c39e9249f9a7ed559c.tar.gz |
use av_strdup()
Originally committed as revision 1507 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/fish.c')
-rw-r--r-- | vhook/fish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/fish.c b/vhook/fish.c index 2de265feb1..1e75e9c658 100644 --- a/vhook/fish.c +++ b/vhook/fish.c @@ -134,7 +134,7 @@ int Configure(void **ctxp, int argc, char *argv[]) ci->debug++; break; case 'D': - ci->dir = strdup(optarg); + ci->dir = av_strdup(optarg); break; default: fprintf(stderr, "Unrecognized argument '%s'\n", argv[optind]); |