diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-03-22 19:27:04 +0100 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-03-22 19:39:46 +0100 |
commit | 0e22f14ed642af94db5f0dd7461920274be3361a (patch) | |
tree | 9330d305d9138437634c84721e30671aa4ecd9db /tools/intel_l3_parity.c | |
parent | bff22f7317a39605d53cf142e2c0f5c424d9c12c (diff) |
tests|lib: remove assert.h includes
Only the igt core and non-test tools should have asserts to catch
internal errors, tests and helper libraries should all user igt_asert
instead.
Fix things up where assert instead of igt_assert was used.
One tiny step towards header sanity.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tools/intel_l3_parity.c')
-rw-r--r-- | tools/intel_l3_parity.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c index 79e59104..aed36c83 100644 --- a/tools/intel_l3_parity.c +++ b/tools/intel_l3_parity.c @@ -28,6 +28,7 @@ #define _GNU_SOURCE #include <sys/types.h> #include <sys/stat.h> +#include <assert.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> |