Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2006-06-02 14:55:21 +0400
committerTon Roosendaal <ton@blender.org>2006-06-02 14:55:21 +0400
commit703d4baadb4e09b18f91cb73d0567deaf888e6ae (patch)
treee14c7d91694ef05eb9b29d7fba54b04cfbd18dc2 /source/blender/src/toets.c
parent6632745a25a75bc544675c30ff405fb837c3ccfb (diff)
Wrong return and else combo... gave gcc warning.
Diffstat (limited to 'source/blender/src/toets.c')
-rw-r--r--source/blender/src/toets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/toets.c b/source/blender/src/toets.c
index 9b46d9c5f43..f261538253c 100644
--- a/source/blender/src/toets.c
+++ b/source/blender/src/toets.c
@@ -378,8 +378,8 @@ char *recent_filelist(void)
recent = BLI_findlink(&(G.recent_files), event-1-ofs);
if(recent) return(recent->filename);
}
- else
- return(NULL);
+
+ return(NULL);
}
int blenderqread(unsigned short event, short val)