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:
authorKen Hughes <khughes@pacific.edu>2008-02-03 21:50:03 +0300
committerKen Hughes <khughes@pacific.edu>2008-02-03 21:50:03 +0300
commitab662ae85c4c9d3a2e28f1c26926934708f57482 (patch)
treec8cbaefc695d3dcbd928b212f3c971f1b7585f72 /source/blender/src/editaction.c
parent91439e7604ccb3faaaa55b80a9fb7e185842753e (diff)
More fixes for gcc warnings.
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 0d48db79b8f..38be3ccde91 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -3086,8 +3086,8 @@ static void mouse_action (int selectmode)
TimeMarker *marker, *pmarker;
void *act_channel;
- short sel, act_type;
- float selx;
+ short sel, act_type = 0;
+ float selx = 0.0;
/* determine what type of data we are operating on */
data = get_action_context(&datatype);