diff options
author | Vinson Lee <vlee@vmware.com> | 2010-07-16 18:41:32 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-07-16 18:41:32 -0700 |
commit | e02edab1a1399b308aae59039a670c86242cd83e (patch) | |
tree | 90864aeed6c28f35610d647acdd1907024194038 | |
parent | b5fcab976f702912bfb0edc8c67a8d07e0dfdcb0 (diff) |
nv50: s/__func__/__FUNCTION__/
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 61807dd999be..9c672a0f3010 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -21,7 +21,7 @@ #include "nv50_program.h" #define NOUVEAU_ERR(fmt, args...) \ - fprintf(stderr, "%s:%d - "fmt, __func__, __LINE__, ##args); + fprintf(stderr, "%s:%d - "fmt, __FUNCTION__, __LINE__, ##args); #define NOUVEAU_MSG(fmt, args...) \ fprintf(stderr, "nouveau: "fmt, ##args); |