diff options
author | Hans Bolinder <[email protected]> | 2012-07-02 13:03:47 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-07-02 13:03:47 +0200 |
commit | 5c32f2221c6b6d0e1e358aca113e4a2f40b50829 (patch) | |
tree | f3529e6e9d51bc5ca7f65a2405d1bdce0d713ac0 /lib/kernel/src/disk_log.hrl | |
parent | 3b34580548d5060bae35a0f787e1c80b4a294123 (diff) | |
download | otp-5c32f2221c6b6d0e1e358aca113e4a2f40b50829.tar.gz otp-5c32f2221c6b6d0e1e358aca113e4a2f40b50829.tar.bz2 otp-5c32f2221c6b6d0e1e358aca113e4a2f40b50829.zip |
Correct the type of the disk log header
Thanks to Niclas Eklund.
Diffstat (limited to 'lib/kernel/src/disk_log.hrl')
-rw-r--r-- | lib/kernel/src/disk_log.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/src/disk_log.hrl b/lib/kernel/src/disk_log.hrl index 259967650f..242a25a7a6 100644 --- a/lib/kernel/src/disk_log.hrl +++ b/lib/kernel/src/disk_log.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2011. All Rights Reserved. +%% Copyright Ericsson AB 1997-2012. 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 @@ -74,7 +74,7 @@ | {distributed, Nodes :: [node()]} | {notify, boolean()} | {head, Head :: dlog_head_opt()} - | {head_func, mfa()} + | {head_func, MFA :: {atom(), atom(), list()}} | {mode, Mode :: dlog_mode()}. -type dlog_options() :: [dlog_option()]. -type dlog_repair() :: 'truncate' | boolean(). |