summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-02-03 07:23:09 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-02-03 07:23:09 +0900
commit4957c852696c9559bfbea988325fd9bf94fc34bc (patch)
treeb8240d00884edf3240c470d420a8068f494cb1a6 /src
parentbc9c47d5180ab28e1a3db4dca80da7512aa6839a (diff)
parentb88c8b40d6bfddc0c4eb443c5d735e4cfa7a4df2 (diff)
downloadmruby-4957c852696c9559bfbea988325fd9bf94fc34bc.tar.gz
mruby-4957c852696c9559bfbea988325fd9bf94fc34bc.zip
Merge pull request #2715 from suzukaze/fix-dump.c
Replace int with mrb_bool in dump_bigendian_p func
Diffstat (limited to 'src')
-rw-r--r--src/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dump.c b/src/dump.c
index 09857e8c5..24ddd90b8 100644
--- a/src/dump.c
+++ b/src/dump.c
@@ -1045,7 +1045,7 @@ is_valid_c_symbol_name(const char *name)
return TRUE;
}
-static int
+static mrb_bool
dump_bigendian_p(uint8_t flags)
{
switch (flags & DUMP_ENDIAN_NAT) {