summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Liu <joshua.liu@sourceobby.com>2025-06-22 22:48:13 -0400
committerJoshua Liu <joshua.liu@sourceobby.com>2025-06-22 22:48:13 -0400
commitbfd5d3711d0f8a18b4e65066a29f8c13e5bf2dee (patch)
tree1c714a9adce0e72087628629122446cab2ec8455
parentaba9b8d8754ffde8c13ce0997b7751b2d1c80871 (diff)
feat: added error message for when resetkeystream fails
-rw-r--r--streamdeck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streamdeck.c b/streamdeck.c
index 3269c39..5bdec87 100644
--- a/streamdeck.c
+++ b/streamdeck.c
@@ -122,7 +122,7 @@ connect()
/* We will either to this before or after we initialize the streamdeck struct */
if (resetkeystream(res->hid_handle) != 0)
{
-
+ fprintf (stderr, "Failed to reset key stream!\n");
}
return res;
}