Fix formatting of address operators
The formatter confused address operators preceded by casts with bitwise-and expressions, placing spaces on either side of both. That syntax isn't used by ordinary address operators, however, so fix them for consistency. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
@@ -79,7 +79,7 @@ XISendDeviceHierarchyEvent(int flags[MAXDEVICES])
|
||||
ev->flags = 0;
|
||||
ev->num_info = inputInfo.numDevices;
|
||||
|
||||
info = (xXIHierarchyInfo *) & ev[1];
|
||||
info = (xXIHierarchyInfo *) &ev[1];
|
||||
for (dev = inputInfo.devices; dev; dev = dev->next) {
|
||||
info->deviceid = dev->id;
|
||||
info->enabled = dev->enabled;
|
||||
|
||||
Reference in New Issue
Block a user