diff options
author | Sverker Eriksson <[email protected]> | 2014-02-10 17:00:34 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-02-19 17:20:05 +0100 |
commit | 32d4c07508eeffac64fd901431366d2c34416684 (patch) | |
tree | 7c2371389aeb5741119593ad46f431cc63c72249 /erts/emulator/beam/beam_load.c | |
parent | 5006a54b032a82ad55f33e532e4068c34fe143a9 (diff) | |
download | otp-32d4c07508eeffac64fd901431366d2c34416684.tar.gz otp-32d4c07508eeffac64fd901431366d2c34416684.tar.bz2 otp-32d4c07508eeffac64fd901431366d2c34416684.zip |
erts: Fix harmless (?) typo in beam_load.c
Diffstat (limited to 'erts/emulator/beam/beam_load.c')
-rw-r--r-- | erts/emulator/beam/beam_load.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/beam_load.c b/erts/emulator/beam/beam_load.c index b589d1c930..915af7fbb1 100644 --- a/erts/emulator/beam/beam_load.c +++ b/erts/emulator/beam/beam_load.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 1996-2013. All Rights Reserved. + * Copyright Ericsson AB 1996-2014. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -409,7 +409,7 @@ typedef struct LoaderState { __result = __result << 8 | *Stp->file_p++; \ } \ Dest = __result; \ - } while (0) + } #define GetByte(Stp, Dest) \ if ((Stp)->file_left < 1) { \ |