isert-scst: Enclose complex values in parentheses

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@9574 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2021-09-08 02:47:22 +00:00
parent 0f817a40ef
commit 573e4f21f3

View File

@@ -269,8 +269,8 @@ struct isert_global {
struct workqueue_struct *conn_wq;
};
#define _ptr_to_u64(p) (u64)(unsigned long)(p)
#define _u64_to_ptr(v) (void *)(unsigned long)(v)
#define _ptr_to_u64(p) ((u64)(unsigned long)(p))
#define _u64_to_ptr(v) ((void *)(unsigned long)(v))
/* global iser scope */
int isert_global_init(void);