]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#10125: fix bad merge
authorHoward Chu <hyc@openldap.org>
Sat, 20 Jan 2024 21:16:17 +0000 (21:16 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 20 Jan 2024 21:16:17 +0000 (21:16 +0000)
From ac011b2c5a14d665b5756d8a7435627ffc508855

libraries/liblmdb/mdb_load.c

index 608ebff1b93c5885c2212ec1935010699e46af6c..cba6c06003fa5ef29be1d0d221ee8c61b5f01228 100644 (file)
@@ -449,7 +449,7 @@ int main(int argc, char *argv[])
                        if (rc == MDB_KEYEXIST && putflags)
                                continue;
                        if (rc) {
-                               fprintf(stderr, "%s: line %"Yu": mdb_cursor_put failed, error %d %s\n", prog, lineno, rc, mdb_strerror(rc));
+                               fprintf(stderr, "%s: line %" Z "d: mdb_cursor_put failed, error %d %s\n", prog, lineno, rc, mdb_strerror(rc));
                                goto txn_abort;
                        }
                        batch++;