aboutsummaryrefslogtreecommitdiff
path: root/build/target.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build/target.cxx')
-rw-r--r--build/target.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/target.cxx b/build/target.cxx
index f6fc5c8..df7e2aa 100644
--- a/build/target.cxx
+++ b/build/target.cxx
@@ -32,12 +32,12 @@ namespace build
// target_state
//
static const char* target_state_[] = {
- "group", "unknown", "postponed", "unchanged", "changed", "failed"};
+ "unknown", "unchanged", "changed", "postponed", "failed", "group"};
ostream&
operator<< (ostream& os, target_state ts)
{
- return os << target_state_[static_cast<size_t> (ts)];
+ return os << target_state_[static_cast<uint8_t> (ts)];
}
// recipe