Cleanup: clangg-format for rB157cc54ed521

This commit is contained in:
Joerg Mueller 2019-04-28 11:47:21 +02:00
parent d2f1705b15
commit 91bb8da59f
1 changed files with 2 additions and 2 deletions

View File

@ -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();