summaryrefslogtreecommitdiff
path: root/tinyusb/common/common.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2012-12-07 01:27:32 +0700
committerhathach <[email protected]>2012-12-07 01:31:09 +0700
commit6049b6d0df750908dec0d858448345256b4e9f5e (patch)
treee015e859e77c0731f4f7222a6f9dcf0c0584c0fb /tinyusb/common/common.h
parentf31ade6151089a0d6d99b73c23a7a6e1a538c268 (diff)
make fundamental changes in project building
add some makefile.defs
Diffstat (limited to 'tinyusb/common/common.h')
-rw-r--r--tinyusb/common/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/common/common.h b/tinyusb/common/common.h
index 4b6fc645b..5f0f0655b 100644
--- a/tinyusb/common/common.h
+++ b/tinyusb/common/common.h
@@ -104,7 +104,7 @@
#define ASSERT_MESSAGE(condition, value, message) \
do{\
if (!(condition)) {\
- PRINTF("Assert at %s line %d: %s\n", __func__, __LINE__, message); \
+ PRINTF("Assert at %s line %d: %s\n", __PRETTY_FUNCTION__, __LINE__, message); \
return (value);\
}\
}while(0)