Skip to content

Commit 347c38f

Browse files
[debug] use char pointer so the compiler is happy
1 parent 94a8cc5 commit 347c38f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ce/include/debug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ extern "C" {
1616
#ifndef NDEBUG
1717

1818
/** Standard debug output */
19-
#define dbgout ((void*)0xFB0000)
19+
#define dbgout ((char*)0xFB0000)
2020
/** Standard error debug output */
21-
#define dbgerr ((void*)0xFC0000)
21+
#define dbgerr ((char*)0xFC0000)
2222

2323
/** Break on read. */
2424
#define DBG_WATCHPOINT_READ (1 << 0)

0 commit comments

Comments
 (0)