add missing return statement

This commit is contained in:
Sears Russell 2010-03-29 22:29:14 +00:00
parent 8a5bbd9a38
commit e17e948697

View file

@ -457,6 +457,7 @@ int TgetTransactionFingerprint(int xid, stasis_transaction_fingerprint_t * fp) {
} else if(xid == INVALID_XID) {
fp->xid = INVALID_XID;
fp->rec_lsn = INVALID_LSN;
return 0;
} else {
return ENOENT;
}