From e244ea53287fe498af6b23a5b0c9db97355ca792 Mon Sep 17 00:00:00 2001 From: Kermina Awad Date: Thu, 1 Aug 2024 03:33:58 -0400 Subject: [PATCH] whitespace fixes --- src/gphoto2_camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gphoto2_camera.cpp b/src/gphoto2_camera.cpp index 3d63e56..4ac4ca2 100644 --- a/src/gphoto2_camera.cpp +++ b/src/gphoto2_camera.cpp @@ -760,7 +760,7 @@ namespace ols { if(!camera_list_.empty()) { return camera_list_; } - gp_camera_new(&camera_); + gp_camera_new(&camera_); int ret = gp_camera_init(camera_,ctx_); if(!check(ret,"init",e)) { gp_camera_free(camera_); @@ -804,7 +804,7 @@ extern "C" { void ols_set_gphoto2_driver_log(char const *log_path,int debug) { ols::error_stream = fopen(log_path,"w"); - gp_log_add_func(debug ? GP_LOG_DEBUG : GP_LOG_ERROR , ols::errordumper, NULL); + gp_log_add_func(debug ? GP_LOG_DEBUG : GP_LOG_ERROR , ols::errordumper, NULL); } #ifdef ANDROID_SUPPORT