Skip to content

Commit

Permalink
make tkDList.h equal to Tk 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Nov 14, 2024
1 parent 22dd739 commit 37b89a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generic/tkDList.h
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ static void \
LT##_Free(struct ElemType *elem) \
{ \
LT##_Remove(elem); \
ckfree((void *) elem); \
ckfree((void *)elem); \
} \
\
__TK_DLIST_UNUSED \
Expand Down Expand Up @@ -508,7 +508,7 @@ LT##_Clear(LT *head) \
assert(head); \
for (p = head->first; p; p = next) { \
next = LT##_Next(p); \
ckfree((void *) p); \
ckfree((void *)p); \
} \
LT##_Init(head); \
} \
Expand Down

0 comments on commit 37b89a8

Please sign in to comment.