From 6ca173813eaac08693d1a9d1f346bb31c75d7a75 Mon Sep 17 00:00:00 2001 From: David Rebbe Date: Wed, 4 Dec 2024 12:36:50 -0500 Subject: [PATCH] update comment --- api/icsneo/icsneo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/icsneo/icsneo.cpp b/api/icsneo/icsneo.cpp index 37ccfc1..57fd579 100644 --- a/api/icsneo/icsneo.cpp +++ b/api/icsneo/icsneo.cpp @@ -431,7 +431,7 @@ ICSNEO_API icsneo_error_t icsneo_get_events(icsneo_event_t** events, uint32_t* e }; g_events.push_back(e); } - // Copy the device events references into the events array + // Copy the global events references into the events array for (uint32_t i = 0; i < min_size; i++) { events[i] = &g_events[i]; }