summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorMasaki Muranaka <[email protected]>2013-04-25 16:57:52 +0900
committerMasaki Muranaka <[email protected]>2013-04-25 16:57:52 +0900
commit4a6da058088ad51d89aaad90b13f68b97fe6e093 (patch)
tree9254573344a16c1de43a6209238494006b3fe7c1 /src
parente3a9e9b7d6915f604216d8c48b240fa0efcfa56a (diff)
downloadmruby-4a6da058088ad51d89aaad90b13f68b97fe6e093.tar.gz
mruby-4a6da058088ad51d89aaad90b13f68b97fe6e093.zip
Remove redundant whitespaces. Just cosmetic.
Diffstat (limited to 'src')
-rw-r--r--src/load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/load.c b/src/load.c
index a5a1aa644..303cd3881 100644
--- a/src/load.c
+++ b/src/load.c
@@ -80,7 +80,7 @@ read_rite_irep_record(mrb_state *mrb, const uint8_t *bin, uint32_t *len)
src += sizeof(uint16_t);
// number of register variable
- irep->nregs = bin_to_uint16(src);
+ irep->nregs = bin_to_uint16(src);
src += sizeof(uint16_t);
// Binary Data Section
@@ -312,7 +312,7 @@ read_rite_binary_header(const uint8_t *bin, size_t *bin_size, uint16_t *crc)
if (memcmp(header->binary_identify, RITE_BINARY_IDENFIFIER, sizeof(header->binary_identify)) != 0) {
return MRB_DUMP_INVALID_FILE_HEADER;
}
-
+
if (memcmp(header->binary_version, RITE_BINARY_FORMAT_VER, sizeof(header->binary_version)) != 0) {
return MRB_DUMP_INVALID_FILE_HEADER;
}