diff options
author | Dafydd Harries <daf@rhydd.org> | 2007-09-13 01:02:13 +0100 |
---|---|---|
committer | Dafydd Harries <daf@rhydd.org> | 2007-09-13 02:14:19 +0100 |
commit | 09688573f9fbf07e6678fbaca1bccafdf239b303 (patch) | |
tree | c03f50eb8d843ac56364019f990f77ac35ff0749 /xorg/avivo_output.c | |
parent | 9e0d5a60a81e228f4f849402270a18345ec17b58 (diff) |
avivo_output_init: initialize output to 0 to shut up compiler warnings
Diffstat (limited to 'xorg/avivo_output.c')
-rw-r--r-- | xorg/avivo_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg/avivo_output.c b/xorg/avivo_output.c index 1aae462..e1a629d 100644 --- a/xorg/avivo_output.c +++ b/xorg/avivo_output.c @@ -493,7 +493,7 @@ Bool avivo_output_init(ScrnInfoPtr screen_info, xf86ConnectorType type, int number, unsigned long ddc_reg) { - xf86OutputPtr output; + xf86OutputPtr output = {0,}; struct avivo_output_private *avivo_output; int name_size; |