Skip to content

Commit

Permalink
resource: ubridge: quiet compiler warning about possible uninitialize…
Browse files Browse the repository at this point in the history
…d variable (false positive)
  • Loading branch information
prajnoha committed Sep 27, 2023
1 parent 9d90234 commit 36583ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resource/ubridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -3598,7 +3598,7 @@ static int _refresh_device_disk_hierarchy_from_sysfs(sid_resource_t *cmd_res)
char devid_buf[UTIL_UUID_STR_SIZE];
kv_vector_t *vvalue;
size_t vsize = 0;
int count = 0, i;
int count = 0, i = 0;
util_mem_t mem;
int r = -1;

Expand Down

0 comments on commit 36583ba

Please sign in to comment.