nsf / termbox

Library for writing text-based user interfaces
http://code.google.com/p/termbox
MIT License
1.96k stars 185 forks source link

Added 'void' to 'tb_cell_buffer' parameter list #66

Closed sjrct closed 8 years ago

sjrct commented 8 years ago

The lack of an explicit void in C implies an unknown number of parameters rather than none. This simply adds the explicit void.

Note that without this the following compiles without warning or error:

#include <termbox.h>

int main() {
    tb_cell_buffer(12);
    return 0;
}