diff options
-rw-r--r-- | src/gclue-location-source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gclue-location-source.c b/src/gclue-location-source.c index 79c78b7..f732dfe 100644 --- a/src/gclue-location-source.c +++ b/src/gclue-location-source.c @@ -290,7 +290,7 @@ start_source (GClueLocationSource *source) if (source->priv->active_counter > 1) { g_debug ("%s already active, not starting.", G_OBJECT_TYPE_NAME (source)); - return FALSE; + return TRUE; } if (source->priv->compute_movement) { @@ -313,7 +313,7 @@ stop_source (GClueLocationSource *source) if (source->priv->active_counter == 0) { g_debug ("%s already inactive, not stopping.", G_OBJECT_TYPE_NAME (source)); - return FALSE; + return TRUE; } source->priv->active_counter--; |