Skip to content

Commit

Permalink
Fix compilation error.Add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
GFWisshit authored and arnopo committed Apr 16, 2021
1 parent 5c6f465 commit 278bcd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/include/openamp/virtqueue.h
Expand Up @@ -146,7 +146,7 @@ typedef void (*vq_notify)(struct virtqueue *);
(vq)->vq_inuse = true; \
else \
VQASSERT(vq, !(vq)->vq_inuse,\
"VirtQueue already in use") \
"VirtQueue already in use"); \
} while (0)

#define VQUEUE_IDLE(vq) ((vq)->vq_inuse = false)
Expand Down

0 comments on commit 278bcd2

Please sign in to comment.