From 4d8bda52fe2b31d5ba63b9f039d634a70a6932d7 Mon Sep 17 00:00:00 2001 From: Sri Teja T Date: Mon, 16 Dec 2024 15:56:27 +0530 Subject: [PATCH] chore: fix examples --- examples/desktop/events/monitor.c | 2 +- examples/desktop/events/resilient_monitor.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/desktop/events/monitor.c b/examples/desktop/events/monitor.c index d5bc7ddf..157698de 100644 --- a/examples/desktop/events/monitor.c +++ b/examples/desktop/events/monitor.c @@ -52,7 +52,7 @@ int main(int argc, char *argv[]) { goto exit; } - if ((ret = atclient_monitor_pkam_authenticate(&monitor_conn, atsign, &atkeys, NULL, NULL)) != 0) { + if ((ret = atclient_monitor_pkam_authenticate(&monitor_conn, atsign, &atkeys, NULL)) != 0) { atlogger_log(TAG, ATLOGGER_LOGGING_LEVEL_ERROR, "Failed to authenticate monitor with PKAM\n"); goto exit; } diff --git a/examples/desktop/events/resilient_monitor.c b/examples/desktop/events/resilient_monitor.c index e08c69b1..69d0fb63 100644 --- a/examples/desktop/events/resilient_monitor.c +++ b/examples/desktop/events/resilient_monitor.c @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) { goto exit; } - if ((ret = atclient_monitor_pkam_authenticate(&monitor_conn, atsign, &atkeys, NULL, NULL)) != 0) { + if ((ret = atclient_monitor_pkam_authenticate(&monitor_conn, atsign, &atkeys, NULL)) != 0) { atlogger_log(TAG, ATLOGGER_LOGGING_LEVEL_ERROR, "Failed to authenticate monitor with PKAM\n"); goto exit; }