diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2006-07-10 12:04:09 -0700 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-07-10 12:04:09 -0700 |
commit | f76f94a743505da16e121992eb789c1f74eb7673 (patch) | |
tree | 335fd6380bea4f1857531b54148178f77770c371 /src/i830_dvo.c | |
parent | df333cc9a848bc2299a52a7613fe4ffdff8038a2 (diff) |
Supply proper NULL-terminated symbol lists to avoid crashing.
Diffstat (limited to 'src/i830_dvo.c')
-rw-r--r-- | src/i830_dvo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/i830_dvo.c b/src/i830_dvo.c index b82eaee2..242e3dd0 100644 --- a/src/i830_dvo.c +++ b/src/i830_dvo.c @@ -35,10 +35,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #include "ch7xxx/ch7xxx.h" static const char *SIL164Symbols[] = { - SIL164_SYMBOL_LIST + "Sil164VidOutput", + NULL }; static const char *CH7xxxSymbols[] = { - CH7xxx_SYMBOL_LIST + "CH7xxxVidOutput", + NULL }; /* driver list */ |