diff options
author | Matt Turner <mattst88@gmail.com> | 2009-08-12 14:45:13 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-08-12 14:45:13 -0400 |
commit | 8ce4fde76fdf747fd3e00836c9c9c542e516ae9a (patch) | |
tree | f92c5891fe3f203c71ec2fc3a08af7ee3d3a5af8 /hw/xfree86/os-support/bsd | |
parent | a400dbb38f93030d51afe806b4b20d5ef501c855 (diff) |
Fix build on Alpha
Diffstat (limited to 'hw/xfree86/os-support/bsd')
-rw-r--r-- | hw/xfree86/os-support/bsd/bsd_axp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/os-support/bsd/bsd_axp.c b/hw/xfree86/os-support/bsd/bsd_axp.c index cb10a9d40..77c87ce1d 100644 --- a/hw/xfree86/os-support/bsd/bsd_axp.c +++ b/hw/xfree86/os-support/bsd/bsd_axp.c @@ -36,7 +36,7 @@ static _AXP axpList[] = { {"lca",LCA}, {"t2",T2}, {"tsunami",TSUNAMI}, - {NULL,NONE} + {NULL,SYS_NONE} }; axpDevice @@ -65,7 +65,7 @@ bsdGetAXP(void) #endif for (i=0;;i++) { if (axpList[i].name == NULL) - return NONE; + return SYS_NONE; if (!strcmp(sysname, axpList[i].name)) return axpList[i].type; } |