Add missing core object operation table with NULL entries
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_gps.c
index 50b3b2a..c6d5583 100644 (file)
 
 #include "at_gps.h"
 
+static struct tcore_gps_operations gps_ops = {
+       .confirm_measure_pos = NULL,
+};
+
 gboolean at_gps_init(TcorePlugin *cp)
 {
        CoreObject *co;
        Server *server;
 
-       co = tcore_gps_new(cp, NULL, NULL);
+       co = tcore_gps_new(cp, &gps_ops, NULL);
        if (co == NULL)
                return FALSE;