diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
commit | 36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (patch) | |
tree | 4c9121aea216399330a7448f303bb29a36076cbb /libavcodec/eval.c | |
parent | f8d611285025cae8c933dc1228a2b1db5de5cf85 (diff) | |
download | ffmpeg-36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740.tar.gz |
Remove unused variables and the corresponding warnings along with them.
Originally committed as revision 6536 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.c')
-rw-r--r-- | libavcodec/eval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 9414bc956c..bd29d7e48c 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -86,7 +86,6 @@ static int8_t si_prefixes['z' - 'E' + 1]={ */ static double av_strtod(const char *name, char **tail) { double d; - int p = 0; char *next; d = strtod(name, &next); /* if parsing succeeded, check for and interpret postfixes */ |