diff options
Diffstat (limited to 'rts/Adjustor.c')
-rw-r--r-- | rts/Adjustor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rts/Adjustor.c b/rts/Adjustor.c index f2b4355831..476d63140e 100644 --- a/rts/Adjustor.c +++ b/rts/Adjustor.c @@ -40,7 +40,7 @@ Haskell side. #include "Rts.h" #include "RtsUtils.h" -#include "Stable.h" +#include "StablePtr.h" #if defined(USE_LIBFFI_FOR_ADJUSTORS) #include "ffi.h" @@ -357,6 +357,7 @@ static int totalArgumentSize(char *typeString) sz += 2; break; } + /* fall through */ // everything else is one word. default: sz += 1; |