Navigation Menu

Skip to content

Commit

Permalink
add missing grn_rc constants to grn_rc_to_string
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryo Onodera committed Oct 28, 2009
1 parent a40b7a5 commit 7b69e6a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/unit/lib/grn-test-utils.c
Expand Up @@ -148,6 +148,14 @@ grn_rc_to_string(grn_rc rc)
return "GRN_ZLIB_ERROR";
case GRN_LZO_ERROR:
return "GRN_LZO_ERROR";
case GRN_STACK_OVER_FLOW:
return "GRN_STACK_OVER_FLOW";
case GRN_SYNTAX_ERROR:
return "GRN_SYNTAX_ERROR";
case GRN_RETRY_MAX:
return "GRN_RETRY_MAX";
case GRN_INCOMPATIBLE_FILE_FORMAT:
return "GRN_INCOMPATIBLE_FILE_FORMAT";
default:
return "GRN_UNKNOWN_STATUS";
}
Expand Down

0 comments on commit 7b69e6a

Please sign in to comment.