Files
xserver/dix
Adam Richter 9d25408a59 assert(a && b) --> assert(a); assert(b)
Separate each statement of the form "assert(a && b);" into "assert(a);"
and "assert(b);" for more precise diagnostics, except for this clever
use in drmmode_display.c where it was used to pass a hint to developers:

	assert(num_infos <= 32 && "update return type");
2019-05-02 15:02:36 -07:00
..
2017-10-30 13:45:20 -04:00
2018-09-28 16:25:17 -04:00
2017-11-06 17:22:46 -05:00
2018-03-27 10:13:18 -04:00
2016-05-26 16:07:54 -07:00
2019-04-12 21:53:03 +00:00