diff options
author | Lukas Larsson <[email protected]> | 2013-05-22 10:25:57 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-05-22 10:25:57 +0200 |
commit | 4bd041e74b5e3e1356a10bb0188aab37521d717a (patch) | |
tree | 5c324dcd4a849dbb06707e967aabee7c0b0dd377 | |
parent | 2886d9937990c3465671b59d744f6bacd43545c8 (diff) | |
parent | 940555955b0ab19cf13e5a30d3342fdd4618c1f6 (diff) | |
download | otp-4bd041e74b5e3e1356a10bb0188aab37521d717a.tar.gz otp-4bd041e74b5e3e1356a10bb0188aab37521d717a.tar.bz2 otp-4bd041e74b5e3e1356a10bb0188aab37521d717a.zip |
Merge branch 'lukas/erts/process_memory_crash_dump/OTP-11098' into maint
* lukas/erts/process_memory_crash_dump/OTP-11098:
Bump crash dump version
-rw-r--r-- | erts/emulator/beam/break.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/break.c b/erts/emulator/beam/break.c index e34fc8388c..f8cfd60a6f 100644 --- a/erts/emulator/beam/break.c +++ b/erts/emulator/beam/break.c @@ -754,7 +754,7 @@ erl_crash_dump_v(char *file, int line, char* fmt, va_list args) return; /* Can't create the crash dump, skip it */ time(&now); - erts_fdprintf(fd, "=erl_crash_dump:0.1\n%s", ctime(&now)); + erts_fdprintf(fd, "=erl_crash_dump:0.2\n%s", ctime(&now)); if (file != NULL) erts_fdprintf(fd, "The error occurred in file %s, line %d\n", file, line); |