1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix a comment typo.

FossilOrigin-Name: 19c6625abd5b4e6a4406a8e421ae22527529e305
This commit is contained in:
drh
2011-04-27 01:00:17 +00:00
parent 53a9d15826
commit 5275d2ee63
3 changed files with 8 additions and 8 deletions

View File

@@ -2929,7 +2929,7 @@ int sqlite3VdbeRecordCompare(
/* Compilers may complain that mem1.u.i is potentially uninitialized.
** We could initialize it, as shown here, to silence those complaints.
** But in fact, mem1.u.i will never actually be used initialized, and doing
** But in fact, mem1.u.i will never actually be used uninitialized, and doing
** the unnecessary initialization has a measurable negative performance
** impact, since this routine is a very high runner. And so, we choose
** to ignore the compiler warnings and leave this variable uninitialized.