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:
authorKent Mein <mein@cs.umn.edu>2009-02-24 19:51:55 +0300
committerKent Mein <mein@cs.umn.edu>2009-02-24 19:51:55 +0300
commitd9862517fbdb06bbcf4c5b5982764b362457f63d (patch)
tree1d7a7f86925c0c24bba3b334a5f4f9c7e6b0bad6 /source/blender/editors/space_action/action_edit.c
parentc2145c67e8097c97f5c881a4f6b9b8599b87dc11 (diff)
Added return statements to a couple of functions that didn't have
them and removed an extra ; Kent
Diffstat (limited to 'source/blender/editors/space_action/action_edit.c')
-rw-r--r--source/blender/editors/space_action/action_edit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index b576447702d..53403a4e699 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -256,6 +256,8 @@ static short copy_action_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
+
+ return ok;
}
@@ -273,6 +275,8 @@ static short paste_action_keys (bAnimContext *ac)
/* clean up */
BLI_freelistN(&anim_data);
+
+ return ok;
}
/* ------------------- */