diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2005-09-06 15:17:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 16:57:36 -0700 |
commit | 1e1a5cc77ec019e0d67c2abcbd486e4f3ac947a4 (patch) | |
tree | 053fa3ea31a4e770cefdf8a704fb4b8378aca7e4 /drivers/isdn/i4l | |
parent | 96803820b3d9830518083c02681fd3f72987ae4d (diff) | |
download | linux-3.10-1e1a5cc77ec019e0d67c2abcbd486e4f3ac947a4.tar.gz linux-3.10-1e1a5cc77ec019e0d67c2abcbd486e4f3ac947a4.tar.bz2 linux-3.10-1e1a5cc77ec019e0d67c2abcbd486e4f3ac947a4.zip |
[PATCH] isdn_v110 warning fix
Here's a small warning fix for drivers/isdn/i4l/isdn_v110.c
drivers/isdn/i4l/isdn_v110.c:523: warning: `ret' might be used uninitialized in this function
In addition to Karsten Keil signing off on the patch, Thomas Pfeiffer also
commented on the patch, saying
"initializing ret with the value zero is correct and should be done."
Please apply.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/isdn/i4l')
-rw-r--r-- | drivers/isdn/i4l/isdn_v110.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/i4l/isdn_v110.c b/drivers/isdn/i4l/isdn_v110.c index f47f2b9846d..38619e8cd82 100644 --- a/drivers/isdn/i4l/isdn_v110.c +++ b/drivers/isdn/i4l/isdn_v110.c @@ -516,11 +516,11 @@ buffer_full: } int -isdn_v110_stat_callback(int idx, isdn_ctrl * c) +isdn_v110_stat_callback(int idx, isdn_ctrl *c) { isdn_v110_stream *v = NULL; int i; - int ret; + int ret = 0; if (idx < 0) return 0; |