瀏覽代碼

* src/graphics.c:

+ Fix strict aliasing rules breakage.
tags/v0.99.beta14
Sam Hocevar sam 20 年之前
父節點
當前提交
a2bc76b696
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      src/graphics.c

+ 5
- 1
src/graphics.c 查看文件

@@ -472,7 +472,11 @@ void caca_putstr(int x, int y, char const *s)
SLsmg_write_string(_caca_empty_line + _caca_width - len);
else
#endif
SLsmg_write_string((char *)(intptr_t)s);
{
union { char *ch; const char *constch; } u;
u.constch = s;
SLsmg_write_string(u.ch);
}
break;
#endif
#if defined(USE_NCURSES)


Loading…
取消
儲存