From e17e94869799693ddc0804c291fff5b2ef88bdf4 Mon Sep 17 00:00:00 2001 From: Sears Russell Date: Mon, 29 Mar 2010 22:29:14 +0000 Subject: [PATCH] add missing return statement --- src/stasis/transactional2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stasis/transactional2.c b/src/stasis/transactional2.c index 26f9ab9..ccd0293 100644 --- a/src/stasis/transactional2.c +++ b/src/stasis/transactional2.c @@ -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; }