Documentation: Fix error in Access Object Attributes at Runtime example

fixes #10528

Signed-off-by: Michael Friedrich <michael.friedrich@netways.de>
This commit is contained in:
Markus Waldmueller 2015-11-04 11:50:21 +01:00 committed by Michael Friedrich
parent 21cb5690f5
commit f79b07326c
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ cluster state and output:
if (up_count >= down_count) {
return 0 //same up as down -> UP
} else {
return 1 //something is broken
return 2 //something is broken
}
}}