radio_ext: Start from 1 (as 0 means FALSE)

This commit is contained in:
Marius Gripsgard
2025-03-19 03:50:52 +01:00
parent ff4d0dd70c
commit 0cc9aed3f3

View File

@@ -149,7 +149,8 @@ static
guint
qti_radio_ext_new_req_id()
{
static guint last_id = 0;
// Start from 1
static guint last_id = 1;
return last_id++;
}