projects
/
platform
/
core
/
system
/
kdbus-bus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8afecaa
)
util.h: KDBUS_ITEM_VALID fixed
author
Jacek Janczyk
<j.janczyk@samsung.com>
Tue, 17 Jun 2014 10:38:38 +0000
(12:38 +0200)
committer
Kay Sievers
<kay@vrfy.org>
Tue, 17 Jun 2014 16:16:16 +0000
(18:16 +0200)
Missing character leading to wrong variable name restored.
Signed-off-by: Jacek Janczyk <j.janczyk@samsung.com>
util.h
patch
|
blob
|
history
diff --git
a/util.h
b/util.h
index 96170e622039d506e39bcb7dc2c5f645d0b90056..503e546f53b3ef7c05318f0c10155de657a1847e 100644
(file)
--- a/
util.h
+++ b/
util.h
@@
-39,7
+39,7
@@
#define KDBUS_ITEM_VALID(_i, _is, _s) \
((_i)->size > KDBUS_ITEM_HEADER_SIZE && \
(u8 *)(_i) + (_i)->size <= (u8 *)(_i) + (_s) && \
- (u8 *)(_i) >= (u8 *)(_i))
+ (u8 *)(_i) >= (u8 *)(_i
s
))
#define KDBUS_ITEMS_END(_i, _is, _s) \
((u8 *)_i == ((u8 *)(_is) + KDBUS_ALIGN8(_s)))