Three spaces indentation instead of tabs

This commit is contained in:
twinaphex 2015-02-15 23:38:48 +01:00
parent 4171b49b44
commit 16159a751f

View File

@ -21,7 +21,7 @@ static const char * modes[]={ "rb", "wb", "r+b" };
struct nbio_t* nbio_open(const char * filename, enum nbio_mode_t mode) struct nbio_t* nbio_open(const char * filename, enum nbio_mode_t mode)
{ {
struct nbio_t* handle; struct nbio_t* handle = NULL;
FILE* f=fopen(filename, modes[mode]); FILE* f=fopen(filename, modes[mode]);
if (!f) if (!f)
return NULL; return NULL;