summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-30 23:28:35 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-30 23:28:35 +0000
commit8fb6f4d148fce8c41c5417d1ede8fc38d99a7396 (patch)
tree7cc1c6a4d6bec86f311ec96d8a83a34dfcb9b472
parentb36c1401a09b0e7c489558bfc95c6223dea56291 (diff)
downloadnetsurf-8fb6f4d148fce8c41c5417d1ede8fc38d99a7396.tar.gz
netsurf-8fb6f4d148fce8c41c5417d1ede8fc38d99a7396.tar.bz2
Fix GetSucc (credit: Buzz)
-rw-r--r--amiga/os3support.c7
-rw-r--r--amiga/os3support.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/amiga/os3support.c b/amiga/os3support.c
index 34117937d..f29763633 100644
--- a/amiga/os3support.c
+++ b/amiga/os3support.c
@@ -192,6 +192,13 @@ struct Node *GetHead(struct List *list)
return res;
}
+struct Node *GetSucc(struct Node *node)
+{
+ if (node->ln_Succ->ln_Succ == NULL) return NULL;
+ return node->ln_Succ;
+}
+
+
/* Intuition */
uint32 GetAttrs(Object *obj, Tag tag1, ...)
{
diff --git a/amiga/os3support.h b/amiga/os3support.h
index 319d3b319..4752e9109 100644
--- a/amiga/os3support.h
+++ b/amiga/os3support.h
@@ -144,7 +144,6 @@
#define AllocVecTagList(SZ,TAG) AllocVec(SZ,MEMF_ANY) /* AllocVecTagList with no tags */
#define FindIName FindName
#define GetPred(N) N ? (N)->ln_Pred : NULL
-#define GetSucc(N) N ? (N)->ln_Succ : NULL
/* Gfx */
#define SetRPAttrs(...) (void)0 /*\todo Probably need to emulate this */
@@ -240,6 +239,7 @@ void FreeSysObject(ULONG type, APTR obj);
/* Exec */
struct Node *GetHead(struct List *list);
+struct Node *GetSucc(struct Node *node);
/* Intuition */
uint32 GetAttrs(Object *obj, Tag tag1, ...);