diff --git a/libfprint/fpi-print.h b/libfprint/fpi-print.h index 94670a0..04500d6 100644 --- a/libfprint/fpi-print.h +++ b/libfprint/fpi-print.h @@ -21,13 +21,13 @@ typedef enum { /** * FpiMatchResult: * @FPI_MATCH_ERROR: An error occured during matching - * @FPI_MATCH_SUCCESS: The prints matched * @FPI_MATCH_FAIL: The prints did not match + * @FPI_MATCH_SUCCESS: The prints matched */ typedef enum { - FPI_MATCH_ERROR = 0, - FPI_MATCH_SUCCESS, + FPI_MATCH_ERROR = -1, /* -1 for g_task_propagate_int */ FPI_MATCH_FAIL, + FPI_MATCH_SUCCESS, } FpiMatchResult; void fpi_print_add_print (FpPrint *print,