summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--amiga/file.c2
-rw-r--r--amiga/os3support.h7
2 files changed, 6 insertions, 3 deletions
diff --git a/amiga/file.c b/amiga/file.c
index 80e5d84b1..e191ae190 100644
--- a/amiga/file.c
+++ b/amiga/file.c
@@ -217,7 +217,7 @@ void ami_file_save(int type, char *fname, struct Window *win,
void ami_file_save_req(int type, struct gui_window_2 *gwin,
struct hlcache_handle *object)
{
- char *fname = AllocVecTags(1024, NULL);
+ char *fname = AllocVecTagList(1024, NULL);
char *initial_fname = NULL;
if(object) {
diff --git a/amiga/os3support.h b/amiga/os3support.h
index dbd1ef755..9eb195913 100644
--- a/amiga/os3support.h
+++ b/amiga/os3support.h
@@ -46,14 +46,17 @@
/* Ignore tags that aren't supported */
#define PDTA_PromoteMask TAG_IGNORE
+/* Renamed structures */
+#define AnchorPathOld AnchorPath
+
/* Easy compat macros */
/* application */
#define Notify(...) (void)0;
/* Exec */
/* AllocVecTagList with no tags */
-#define AllocVecTagList(SZ,TAG) AllocVec(SZ,MEMF_ANY);
-#define GetSucc(N) (N)->ln_Succ;
+#define AllocVecTagList(SZ,TAG) AllocVec(SZ,MEMF_ANY)
+#define GetSucc(N) (N)->ln_Succ
/* diskfont */
/* Only used in one place we haven't ifdeffed, where it returns the charset name */