summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_vs_aos_io.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-03-18 11:35:26 +0000
committerKeith Whitwell <keithw@vmware.com>2009-03-18 13:04:43 +0000
commit5488fe84f97b839287abc39727d60ef680f9dd5c (patch)
treea08eb7865fa2228c6eb0388bba8cf94e8678a47e /src/gallium/auxiliary/draw/draw_vs_aos_io.c
parenteddfad39552cc81c1157539c930a1b6c707bf1d3 (diff)
draw: use AOS_ERROR rather than clash-prone ERROR() macro
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs_aos_io.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_vs_aos_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos_io.c b/src/gallium/auxiliary/draw/draw_vs_aos_io.c
index 39f75b50b7..a6eb37d128 100644
--- a/src/gallium/auxiliary/draw/draw_vs_aos_io.c
+++ b/src/gallium/auxiliary/draw/draw_vs_aos_io.c
@@ -199,7 +199,7 @@ static boolean load_input( struct aos_compilation *cp,
emit_load_R8G8B8A8_UNORM(cp, dataXMM, src);
break;
default:
- ERROR(cp, "unhandled input format");
+ AOS_ERROR(cp, "unhandled input format");
return FALSE;
}
@@ -410,7 +410,7 @@ static boolean emit_output( struct aos_compilation *cp,
}
break;
default:
- ERROR(cp, "unhandled output format");
+ AOS_ERROR(cp, "unhandled output format");
return FALSE;
}