remove trailing spaces from bc9c47d5

This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-09-03 01:39:17 +09:00
parent c6aa87c837
commit 7b5f8b0728
3 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -21,6 +21,7 @@ MRuby::Build.new do |conf|
# include the default GEMs
conf.gembox 'default'
conf.gem :core => 'mruby-eval'
# C compiler settings
# conf.cc do |cc|
@@ -105,7 +106,7 @@ MRuby::Build.new('host-debug') do |conf|
conf.gem :core => "mruby-bin-debugger"
# bintest
# conf.enable_bintest
conf.enable_bintest
end
MRuby::Build.new('test') do |conf|
+2 -2
View File
@@ -17,8 +17,8 @@ extern "C" {
#define DUMP_DEBUG_INFO 1
#define DUMP_ENDIAN_BIG 2
#define DUMP_ENDIAN_LIL 4
#define DUMP_ENDIAN_NAT 6
#define DUMP_ENDIAN_MASK 6
#define DUMP_ENDIAN_NAT 6
#define DUMP_ENDIAN_MASK 6
int mrb_dump_irep(mrb_state *mrb, mrb_irep *irep, uint8_t flags, uint8_t **bin, size_t *bin_size);
#ifdef ENABLE_STDIO
+1 -1
View File
@@ -529,7 +529,7 @@ read_binary_header(const uint8_t *bin, size_t *bin_size, uint16_t *crc, uint8_t
else if (memcmp(header->binary_ident, RITE_BINARY_IDENT_LIL, sizeof(header->binary_ident)) == 0) {
if (bigendian_p())
*flags |= FLAG_BYTEORDER_LIL;
else
else
*flags |= FLAG_BYTEORDER_NATIVE;
}
else {