meson: Fix space around colon issues

The meson style, which libcamera follows, recommends a space before
colons in function parameters. Fix the style violations through the
project.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2023-07-06 10:23:36 +03:00
parent adb1bbb748
commit ca437b4a0c
12 changed files with 26 additions and 26 deletions

View file

@ -10,5 +10,5 @@ foreach test : stream_tests
dependencies : libcamera_public,
link_with : test_libraries,
include_directories : test_includes_internal)
test(test['name'], exe, suite: 'stream')
test(test['name'], exe, suite : 'stream')
endforeach