diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2017-06-23 09:19:35 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2017-06-23 09:19:35 +0200 |
commit | 0cc0ea331abc3f906606389b194166180d5ba548 (patch) | |
tree | 7cb69a14616f673bd1eb05a2b6965645af98d203 /uca-ufo-camera.c | |
parent | fa458b96410401d070e06fabdf4b4490da898927 (diff) | |
download | uca-ufo-0cc0ea331abc3f906606389b194166180d5ba548.tar.gz uca-ufo-0cc0ea331abc3f906606389b194166180d5ba548.tar.bz2 uca-ufo-0cc0ea331abc3f906606389b194166180d5ba548.tar.xz uca-ufo-0cc0ea331abc3f906606389b194166180d5ba548.zip |
Improve formatting
Diffstat (limited to 'uca-ufo-camera.c')
-rw-r--r-- | uca-ufo-camera.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/uca-ufo-camera.c b/uca-ufo-camera.c index cc0dc4c..ea00f07 100644 --- a/uca-ufo-camera.c +++ b/uca-ufo-camera.c @@ -366,9 +366,9 @@ uca_ufo_camera_stop_recording (UcaCamera *camera, GError **error) set_control_bit (priv, 11, FALSE); /* disable streaming */ if (priv->async_thread) { - err = pcilib_stop(priv->handle, PCILIB_EVENT_FLAG_STOP_ONLY); - PCILIB_SET_ERROR(err, UCA_UFO_CAMERA_ERROR_STOP_RECORDING); - g_thread_join(priv->async_thread); + err = pcilib_stop (priv->handle, PCILIB_EVENT_FLAG_STOP_ONLY); + PCILIB_SET_ERROR (err, UCA_UFO_CAMERA_ERROR_STOP_RECORDING); + g_thread_join (priv->async_thread); priv->async_thread = NULL; } @@ -377,7 +377,7 @@ uca_ufo_camera_stop_recording (UcaCamera *camera, GError **error) ; err = pcilib_stop (priv->handle, PCILIB_EVENT_FLAGS_DEFAULT); - PCILIB_SET_ERROR(err, UCA_UFO_CAMERA_ERROR_STOP_RECORDING); + PCILIB_SET_ERROR (err, UCA_UFO_CAMERA_ERROR_STOP_RECORDING); } static void |