projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0067c4
)
vss.c: Kill check for get_file_info == NULL
author
Andre Noll
<maan@systemlinux.org>
Sun, 4 Mar 2007 20:54:36 +0000
(21:54 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Sun, 4 Mar 2007 20:54:36 +0000
(21:54 +0100)
This can never happen.
vss.c
patch
|
blob
|
history
diff --git
a/vss.c
b/vss.c
index
133ed19
..
1983b8e
100644
(file)
--- a/
vss.c
+++ b/
vss.c
@@
-220,7
+220,7
@@
static int get_audio_format(int omit)
int i;
FOR_EACH_AUDIO_FORMAT(i) {
- if (i == omit
|| !afl[i].get_file_info
)
+ if (i == omit)
continue;
rewind(audio_file);
if (get_file_info(i) > 0)