diff options
author | drh <drh@noemail.net> | 2019-05-27 11:21:43 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-05-27 11:21:43 +0000 |
commit | 0a0e89fa2136ffdcecff19916c22f25f4fca55c5 (patch) | |
tree | 40dfeb3204739c3e007a53044a4246898ee4e2c1 /ext/misc/blobio.c | |
parent | 3517cc7f36ab406fbdfd0517976ae456f7905cd4 (diff) | |
download | sqlite-0a0e89fa2136ffdcecff19916c22f25f4fca55c5.tar.gz sqlite-0a0e89fa2136ffdcecff19916c22f25f4fca55c5.zip |
Fix an error message on the blobread() extension function so that it says
"read" instead of "write".
FossilOrigin-Name: 7cbb9a5fe835d01be158edd1e2f9d553dc257f2d27b53a5d5bf6660d0bd101c4
Diffstat (limited to 'ext/misc/blobio.c')
-rw-r--r-- | ext/misc/blobio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/blobio.c b/ext/misc/blobio.c index 65ca467e3..3a1ee8465 100644 --- a/ext/misc/blobio.c +++ b/ext/misc/blobio.c @@ -76,7 +76,7 @@ static void readblobFunc( sqlite3_blob_close(pBlob); if( rc ){ sqlite3_free(aData); - sqlite3_result_error(context, "BLOB write failed", -1); + sqlite3_result_error(context, "BLOB read failed", -1); }else{ sqlite3_result_blob(context, aData, nData, sqlite3_free); } |