diff options
author | Hans Bolinder <[email protected]> | 2012-07-03 13:03:40 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-07-03 13:03:40 +0200 |
commit | 14f6a66f6410e1665ad39e95158420b0a45634d6 (patch) | |
tree | f3529e6e9d51bc5ca7f65a2405d1bdce0d713ac0 /lib/kernel/src/disk_log.hrl | |
parent | 3b34580548d5060bae35a0f787e1c80b4a294123 (diff) | |
parent | 5c32f2221c6b6d0e1e358aca113e4a2f40b50829 (diff) | |
download | otp-14f6a66f6410e1665ad39e95158420b0a45634d6.tar.gz otp-14f6a66f6410e1665ad39e95158420b0a45634d6.tar.bz2 otp-14f6a66f6410e1665ad39e95158420b0a45634d6.zip |
Merge branch 'hb/kernel/fix_spec_disk_log/OTP-10131' into maint
* hb/kernel/fix_spec_disk_log/OTP-10131:
Correct the type of the disk log header
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(). |