summaryrefslogtreecommitdiff
path: root/pugl/pugl_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'pugl/pugl_internal.h')
-rw-r--r--pugl/pugl_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h
index bef8399..1238ebc 100644
--- a/pugl/pugl_internal.h
+++ b/pugl/pugl_internal.h
@@ -250,7 +250,7 @@ puglDecodeUTF8(const uint8_t* buf)
{
#define FAIL_IF(cond) { if (cond) return 0xFFFD; }
- /* http://en.wikipedia.org/wiki/UTF-8 */
+ // http://en.wikipedia.org/wiki/UTF-8
if (buf[0] < 0x80) {
return buf[0];