diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-07-14 17:20:38 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-07-14 17:20:38 +0100 |
commit | fed6348d65e3d927e0fe42733de91a09cf43fec2 (patch) | |
tree | 6ae30b8a02682fe1a7815c60c3c62d43fe4fd2d7 | |
parent | f4cab4f88b251b4abdf8add234c4ba04d9cce03a (diff) | |
download | ayatana-indicator-session-fed6348d65e3d927e0fe42733de91a09cf43fec2.tar.gz ayatana-indicator-session-fed6348d65e3d927e0fe42733de91a09cf43fec2.tar.bz2 ayatana-indicator-session-fed6348d65e3d927e0fe42733de91a09cf43fec2.zip |
changed default return value of get location to 0
-rw-r--r-- | src/indicator-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index ded9218..068ffef 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -275,7 +275,7 @@ indicator_session_get_location (IndicatorObject * io, return 0; } g_warning ("IOEntry handed to us to position but we don't own it!"); - return -1; + return 0; } /* callback for the service manager state of being */ |