aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libmm-glib/mm-location-common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmm-glib/mm-location-common.h b/libmm-glib/mm-location-common.h
index 6397dc6c..ed10baa1 100644
--- a/libmm-glib/mm-location-common.h
+++ b/libmm-glib/mm-location-common.h
@@ -27,7 +27,7 @@
*
* Proper longitude values fall in the [-180,180] range.
*/
-#define MM_LOCATION_LONGITUDE_UNKNOWN G_MINDOUBLE
+#define MM_LOCATION_LONGITUDE_UNKNOWN -G_MAXDOUBLE
/**
* MM_LOCATION_LATITUDE_UNKNOWN:
@@ -36,13 +36,13 @@
*
* Proper latitude values fall in the [-90,90] range.
*/
-#define MM_LOCATION_LATITUDE_UNKNOWN G_MINDOUBLE
+#define MM_LOCATION_LATITUDE_UNKNOWN -G_MAXDOUBLE
/**
* MM_LOCATION_ALTITUDE_UNKNOWN:
*
* Identifier for an unknown altitude value.
*/
-#define MM_LOCATION_ALTITUDE_UNKNOWN G_MINDOUBLE
+#define MM_LOCATION_ALTITUDE_UNKNOWN -G_MAXDOUBLE
#endif /* MM_LOCATION_COMMON_H */