This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* libee/ee.c: Fixed a compilation warning.
tags/v0.99.beta14
Sam Hocevar
sam
21 years ago
parent
24cf1c4fb3
commit
5c34e048ae
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libee/ee.c
+ 2
- 1
libee/ee.c
View File
@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>
@@ -128,7 +129,7 @@ void ee_clear(void)
memset(empty_line, ' ', x);
empty_line[x] = '\0';
for(y; y--;
)
while(y--
)
{
ee_goto(0, y);
ee_putstr(empty_line);
Write
Preview
Loading…
Cancel
Save