aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/option/mm-plugin-hso.c2
-rw-r--r--plugins/samsung/mm-plugin-samsung.c2
-rw-r--r--plugins/ublox/mm-plugin-ublox.c2
-rw-r--r--src/mm-port-probe.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/plugins/option/mm-plugin-hso.c b/plugins/option/mm-plugin-hso.c
index de42c457..3a45ef38 100644
--- a/plugins/option/mm-plugin-hso.c
+++ b/plugins/option/mm-plugin-hso.c
@@ -186,7 +186,7 @@ mm_plugin_create (void)
MM_PLUGIN_ALLOWED_AT, TRUE,
MM_PLUGIN_ALLOWED_QCDM, TRUE,
MM_PLUGIN_CUSTOM_INIT, &custom_init,
- MM_PLUGIN_SEND_DELAY, 0,
+ MM_PLUGIN_SEND_DELAY, (guint64) 0,
NULL));
}
diff --git a/plugins/samsung/mm-plugin-samsung.c b/plugins/samsung/mm-plugin-samsung.c
index 9e6aaf94..e78f6895 100644
--- a/plugins/samsung/mm-plugin-samsung.c
+++ b/plugins/samsung/mm-plugin-samsung.c
@@ -65,7 +65,7 @@ mm_plugin_create (void)
MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems,
MM_PLUGIN_ALLOWED_PRODUCT_IDS, products,
MM_PLUGIN_ALLOWED_AT, TRUE,
- MM_PLUGIN_SEND_DELAY, 0,
+ MM_PLUGIN_SEND_DELAY, (guint64) 0,
NULL));
}
diff --git a/plugins/ublox/mm-plugin-ublox.c b/plugins/ublox/mm-plugin-ublox.c
index d4a29236..6ebd8711 100644
--- a/plugins/ublox/mm-plugin-ublox.c
+++ b/plugins/ublox/mm-plugin-ublox.c
@@ -75,7 +75,7 @@ mm_plugin_create (void)
MM_PLUGIN_ALLOWED_VENDOR_STRINGS, vendor_strings,
MM_PLUGIN_ALLOWED_AT, TRUE,
MM_PLUGIN_CUSTOM_AT_PROBE, custom_at_probe,
- MM_PLUGIN_SEND_DELAY, 0,
+ MM_PLUGIN_SEND_DELAY, (guint64) 0,
NULL));
}
diff --git a/src/mm-port-probe.c b/src/mm-port-probe.c
index 640c319a..c6fa8ad0 100644
--- a/src/mm-port-probe.c
+++ b/src/mm-port-probe.c
@@ -1220,7 +1220,7 @@ serial_open_at (MMPortProbe *self)
g_object_set (ctx->serial,
MM_PORT_SERIAL_SPEW_CONTROL, TRUE,
- MM_PORT_SERIAL_SEND_DELAY, (subsys == MM_PORT_SUBSYS_TTY ? ctx->at_send_delay : 0),
+ MM_PORT_SERIAL_SEND_DELAY, (guint64)(subsys == MM_PORT_SUBSYS_TTY ? ctx->at_send_delay : 0),
MM_PORT_SERIAL_AT_REMOVE_ECHO, ctx->at_remove_echo,
MM_PORT_SERIAL_AT_SEND_LF, ctx->at_send_lf,
NULL);