[DEV] add gitignore and missing return

This commit is contained in:
Edouard DUPIN 2014-04-19 00:17:02 +02:00
parent 143d319c91
commit c25640d80e
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pyc

View File

@ -41,6 +41,7 @@ static int localSeekFunc(void *datasource, ogg_int64_t offset, int whence) {
static int localCloseFunc(void *datasource) { static int localCloseFunc(void *datasource) {
etk::FSNode* file = static_cast<etk::FSNode*>(datasource); etk::FSNode* file = static_cast<etk::FSNode*>(datasource);
file->fileClose(); file->fileClose();
return 0;
} }
static long localTellFunc(void *datasource) { static long localTellFunc(void *datasource) {