diff options
author | Robert Tari <robert@tari.in> | 2024-02-16 00:19:11 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2024-02-16 00:19:11 +0100 |
commit | a7e621f9eb7f46baee850815751f5ab6719f61c2 (patch) | |
tree | acdc7af602706176cc4fa04e3ec6879b52655879 | |
parent | db07408b9120c8eb91e5635d033d8195db76d247 (diff) | |
parent | 5e2bf9ebdacc4f9f2b8a8902de79119a35e66a41 (diff) | |
download | ayatana-indicator-session-a7e621f9eb7f46baee850815751f5ab6719f61c2.tar.gz ayatana-indicator-session-a7e621f9eb7f46baee850815751f5ab6719f61c2.tar.bz2 ayatana-indicator-session-a7e621f9eb7f46baee850815751f5ab6719f61c2.zip |
Merge branch 'sunweaver-pr/boolean-newby'
Attributes GH PR #94: https://github.com/AyatanaIndicators/ayatana-indicator-session/pull/94
-rw-r--r-- | src/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.c b/src/service.c index 6922f04..a373103 100644 --- a/src/service.c +++ b/src/service.c @@ -1426,7 +1426,7 @@ indicator_session_service_init (IndicatorSessionService * self) #if RDA_ENABLED self->priv->bLocal = rda_session_is_local (); #else - self->priv->bLocal = true; + self->priv->bLocal = TRUE; #endif /* RDA_ENABLED */ /* init the backend objects */ |