Switch __FUNCTION__ to __FILE__ since Sun Developer studio doesn't support the former

This commit is contained in:
Love Hornquist Astrand
2009-08-15 05:59:35 +02:00
parent c8175f83a3
commit 6c28d3a772

View File

@@ -42,7 +42,7 @@
int __r; \
if ((__r = (x))) { \
krb5_errx(dcontext, 1, "Failed (%d) on %s:%d", \
__r, __FUNCTION__, __LINE__); \
__r, __FILE__, __LINE__); \
} \
} while(0)