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:
authorJörg Müller <nexyon@gmail.com>2019-04-28 12:47:21 +0300
committerJörg Müller <nexyon@gmail.com>2019-04-28 12:48:55 +0300
commit91bb8da59fe16e711e44d8fb0ff6422277b2d742 (patch)
tree084a564ac46fd811b8573c4a8bfa0aa027214aab /intern/audaspace
parentd2f1705b15be406d5565e510ae82f07d27345af1 (diff)
Cleanup: clangg-format for rB157cc54ed521
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_PyInit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/audaspace/intern/AUD_PyInit.cpp b/intern/audaspace/intern/AUD_PyInit.cpp
index f184f61f4ae..843fe1e6cf1 100644
--- a/intern/audaspace/intern/AUD_PyInit.cpp
+++ b/intern/audaspace/intern/AUD_PyInit.cpp
@@ -34,11 +34,11 @@ extern void *BKE_sound_get_factory(void *sound);
static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args)
{
- PyObject* lptr = NULL;
+ PyObject *lptr = NULL;
if (PyArg_Parse(args, "O:_sound_from_pointer", &lptr)) {
if (lptr) {
- AUD_Sound* sound = BKE_sound_get_factory(PyLong_AsVoidPtr(lptr));
+ AUD_Sound *sound = BKE_sound_get_factory(PyLong_AsVoidPtr(lptr));
if (sound) {
Sound *obj = (Sound *)Sound_empty();