diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-03-08 11:13:34 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-03-08 11:18:01 +0000 |
commit | 5c5ebd6a3ecf3bd83747003bc272a736b7c333c0 (patch) | |
tree | 32eb103cbb3faa3b84d8e3b78aa0aa834e29c57e /src/intel_list.h | |
parent | f6474883d325cff443da9ceaa99ec734e6cdc1d6 (diff) |
intel: Fix typo s/asert/assert/
The joy of conditional compiles masked this compilation failure when
testing.
Reported-by: Reinhard Karcher <reinhard.karcher@gmx.net>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_list.h')
-rw-r--r-- | src/intel_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_list.h b/src/intel_list.h index cbadebf9..cfaa1ad3 100644 --- a/src/intel_list.h +++ b/src/intel_list.h @@ -207,7 +207,7 @@ list_append(struct list *entry, struct list *head) static inline void __list_del(struct list *prev, struct list *next) { - asert(next->prev == prev->next); + assert(next->prev == prev->next); next->prev = prev; prev->next = next; } |