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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-11-06 20:54:52 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-11-06 20:54:52 +0300
commite77e018d48ab99dbe843a79d72bc9d79e5ae8163 (patch)
tree7f3974e9e3496f5938275f68a69f7882f5e10eac /source/creator
parent3d39b98f94a6cd3d4445226dd04d5ba3261bf10b (diff)
Fix typo in new error reporting during arg parsing.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index f039789f877..837011b9e97 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1297,7 +1297,7 @@ static int set_end_frame(int argc, const char **argv, void *data)
}
}
else {
- printf("\nError: no blend loaded. cannot use '%d'.\n", arg_id);
+ printf("\nError: no blend loaded. cannot use '%s'.\n", arg_id);
return 0;
}
}