Skip to content

Commit 446eef3

Browse files
author
Nat!
committed
fix a warning, lose the OSB check (boring and complicated)
1 parent 112d026 commit 446eef3

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/cmake-errors.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ jobs:
1414
compiler: gcc
1515
cflags: -Werror -Wall -Wextra
1616

17-
# Test out of source builds
18-
- name: Ubuntu GCC OSB
19-
os: ubuntu-latest
20-
compiler: gcc
21-
cflags: -Werror -Wall -Wextra
22-
build-dir: ../build
23-
src-dir: ../mulle-objc-runtime
24-
2517
- name: Ubuntu GCC -O3
2618
os: ubuntu-latest
2719
compiler: gcc

src/mulle-objc-signature.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ static char *
216216
{
217217
info->n_members = len;
218218
info->member_type_start = type;
219-
if( info->n_members != (long) len)
219+
if( info->n_members != (unsigned int) len)
220220
abort();
221221
(*callback)( &memoType[ -1], info, userinfo);
222222
}

0 commit comments

Comments
 (0)