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:
authorCampbell Barton <ideasman42@gmail.com>2016-02-10 05:59:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-10 07:27:28 +0300
commit2cbf32e0fb471c23a81785707200296a049b3017 (patch)
treed7f1fa0ccf7b4af10bb153e6a954a86230ec0527 /source/blender/blenlib/intern/string.c
parent184a2ee5a4a79540656a545f65f7bdbe3803d1cd (diff)
Cleanup: double promotion
Also remove null checks from args with non-null attribute.
Diffstat (limited to 'source/blender/blenlib/intern/string.c')
-rw-r--r--source/blender/blenlib/intern/string.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index efc89ff6a15..aad4649344f 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -302,8 +302,6 @@ char *BLI_sprintfN(const char *__restrict format, ...)
va_list arg;
char *n;
- BLI_assert(format != NULL);
-
va_start(arg, format);
ds = BLI_dynstr_new();