summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2021-07-06 13:17:56 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2021-07-06 13:17:56 +0100
commitd182987b4a304bbccf57bbae159215ef4fbced27 (patch)
treee91fcfa6628d63b9df96a594f99df3ceedbd4f12
parent7da6db12c67583c372ac0cd33cb80bc0afabda62 (diff)
downloadnetsurf-d182987b4a304bbccf57bbae159215ef4fbced27.tar.gz
netsurf-d182987b4a304bbccf57bbae159215ef4fbced27.tar.bz2
Amiga: squash warnings
-rw-r--r--frontends/amiga/agclass/amigaguide_class.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/amiga/agclass/amigaguide_class.c b/frontends/amiga/agclass/amigaguide_class.c
index 2b80223ca..f2790a3a2 100644
--- a/frontends/amiga/agclass/amigaguide_class.c
+++ b/frontends/amiga/agclass/amigaguide_class.c
@@ -299,7 +299,7 @@ uint32 agm_open(Class *cl, Object *o, Msg msg)
if ( lod->agHandle ) agm_close(cl, o, msg);
// (Re)establish the AmigaGuide context and open the database asynchronously.
- if ( (lod->agHandle = OpenAmigaGuideAsync(&(lod->nag), NULL)) )
+ if ( (lod->agHandle = OpenAmigaGuideAsyncA(&(lod->nag), NULL)) )
{
if ( (lod->agSignal = AmigaGuideSignal(lod->agHandle)) )
{
@@ -321,8 +321,8 @@ uint32 agm_open(Class *cl, Object *o, Msg msg)
if ( lod->nag.nag_Context )
{
// A context node array is provided = open the current context node.
- SetAmigaGuideContext(lod->agHandle, lod->agContextID, NULL);
- retVal = SendAmigaGuideContext(lod->agHandle, NULL);
+ SetAmigaGuideContextA(lod->agHandle, lod->agContextID, NULL);
+ retVal = SendAmigaGuideContextA(lod->agHandle, NULL);
}
else
{