Skip to content

Commit 2fc09c8

Browse files
committed
clang-format: Increase column size limit to 120
1 parent b1bd85c commit 2fc09c8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ BreakBeforeBraces: Custom
4444
BreakBeforeTernaryOperators: true
4545
BreakConstructorInitializers: BeforeColon
4646
BreakStringLiterals: false # apparently unpredictable
47-
ColumnLimit: 80
47+
ColumnLimit: 120
4848
CompactNamespaces: false
4949
ConstructorInitializerAllOnOneLineOrOnePerLine: true
5050
ConstructorInitializerIndentWidth: 8

src/plugin-main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ OBS_MODULE_USE_DEFAULT_LOCALE(PLUGIN_NAME, "en-US")
2424

2525
bool obs_module_load(void)
2626
{
27-
obs_log(LOG_INFO, "plugin loaded successfully (version %s)",
28-
PLUGIN_VERSION);
27+
obs_log(LOG_INFO, "plugin loaded successfully (version %s)", PLUGIN_VERSION);
2928
return true;
3029
}
3130

0 commit comments

Comments
 (0)