comparison src/os_amiga.c @ 3143:314d9368069e v7.3.342

updated for version 7.3.342 Problem: Code not in Vim style. Solution: Fix the style. (Elias Diem)
author Bram Moolenaar <bram@vim.org>
date Thu, 20 Oct 2011 18:24:22 +0200
parents 18ee39301b82
children 286ba0251c0a
comparison
equal deleted inserted replaced
3142:aae92defc652 3143:314d9368069e
1020 if (!term_console) /* not an amiga window */ 1020 if (!term_console) /* not an amiga window */
1021 goto out; 1021 goto out;
1022 1022
1023 /* insure longword alignment */ 1023 /* insure longword alignment */
1024 #ifdef __amigaos4__ 1024 #ifdef __amigaos4__
1025 if(!(id = AllocDosObject(DOS_INFODATA, 0))) 1025 if (!(id = AllocDosObject(DOS_INFODATA, 0)))
1026 goto out; 1026 goto out;
1027 #else 1027 #else
1028 id = (struct InfoData *)(((long)id_a + 3L) & ~3L); 1028 id = (struct InfoData *)(((long)id_a + 3L) & ~3L);
1029 #endif 1029 #endif
1030 1030