浏览代码

* No way, dude. You cannot declare x and y unsigned if you test for (x < 0).

tags/v0.99.beta14
Sam Hocevar sam 19 年前
父节点
当前提交
5fc912073b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      cucul/import.c

+ 1
- 1
cucul/import.c 查看文件

@@ -212,7 +212,7 @@ static cucul_canvas_t *import_ansi(void const *data, unsigned int size)
unsigned int i; unsigned int i;
unsigned int count = 0; unsigned int count = 0;
unsigned int tuple[1024]; /* Should be enough. Will it be ? */ unsigned int tuple[1024]; /* Should be enough. Will it be ? */
unsigned int x = 0, y = 0;
int x = 0, y = 0;
unsigned int width = 80, height = 25; unsigned int width = 80, height = 25;
int save_x = 0, save_y = 0; int save_x = 0, save_y = 0;
unsigned int j, skip; unsigned int j, skip;


正在加载...
取消
保存