mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-23 22:32:57 +00:00
lib/igt_aux: s/swap/igt_swap/
It collides with the subtest naming convention glossary entry for swap. Which makes the docbook xml stuff unhappy. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
@@ -55,13 +55,13 @@ static int ctx_per_thread;
|
||||
static void xchg_ptr(void *array, unsigned i, unsigned j)
|
||||
{
|
||||
void **A = array;
|
||||
swap(A[i], A[j]);
|
||||
igt_swap(A[i], A[j]);
|
||||
}
|
||||
|
||||
static void xchg_int(void *array, unsigned i, unsigned j)
|
||||
{
|
||||
int *A = array;
|
||||
swap(A[i], A[j]);
|
||||
igt_swap(A[i], A[j]);
|
||||
}
|
||||
|
||||
static int reopen(int _fd)
|
||||
|
||||
Reference in New Issue
Block a user