Mercurial > libavcodec.hg
comparison eval.c @ 3920:3a151ccc6ed7 libavcodec
Remove unused variables and the corresponding warnings along with them.
| author | diego |
|---|---|
| date | Tue, 03 Oct 2006 17:12:48 +0000 |
| parents | 3f7aa9fa5c98 |
| children | c8c591fe26f8 |
comparison
equal
deleted
inserted
replaced
| 3919:b0b88fc01b7c | 3920:3a151ccc6ed7 |
|---|---|
| 84 * postfixes. This allows using f.e. kB, MiB, G and B as a postfix. This | 84 * postfixes. This allows using f.e. kB, MiB, G and B as a postfix. This |
| 85 * function assumes that the unit of numbers is bits not bytes. | 85 * function assumes that the unit of numbers is bits not bytes. |
| 86 */ | 86 */ |
| 87 static double av_strtod(const char *name, char **tail) { | 87 static double av_strtod(const char *name, char **tail) { |
| 88 double d; | 88 double d; |
| 89 int p = 0; | |
| 90 char *next; | 89 char *next; |
| 91 d = strtod(name, &next); | 90 d = strtod(name, &next); |
| 92 /* if parsing succeeded, check for and interpret postfixes */ | 91 /* if parsing succeeded, check for and interpret postfixes */ |
| 93 if (next!=name) { | 92 if (next!=name) { |
| 94 | 93 |
