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>2007-03-19 18:48:24 +0300
committerTon Roosendaal <ton@blender.org>2007-03-19 18:48:24 +0300
commit6f3fb5525eedbd38c3b26daae46976db42216e8d (patch)
tree87232643d35d0e1dd33dba2093e835fc457b0265 /source/blender/blenlib
parent4aa556e9af5afa56e0759ad0db21b97c37a9b6df (diff)
Patch #3126
Option to draw object name in 3d window corner, now also displays for meshes the (pinned) shape key name. Threads: warning fix, added (void) for function declaration.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index 5300d11feb6..cb10185386a 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -99,12 +99,12 @@ typedef struct ThreadSlot {
int avail;
} ThreadSlot;
-static void BLI_lock_malloc_thread()
+static void BLI_lock_malloc_thread(void)
{
pthread_mutex_lock(&_malloc_lock);
}
-static void BLI_unlock_malloc_thread()
+static void BLI_unlock_malloc_thread(void)
{
pthread_mutex_unlock(&_malloc_lock);
}