changeset 17:d9c11148df3b default tip

shh...
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 28 Aug 2025 11:02:58 +0100
parents 70f4df5a7283
children
files cdb.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/cdb.c	Thu Feb 27 18:26:29 2025 +0000
+++ b/cdb.c	Thu Aug 28 11:02:58 2025 +0100
@@ -64,10 +64,10 @@
   if (fstat(fd,&st) == 0)
     if (st.st_size <= 0xffffffff) {
       sprintf(_buf,"%'u",st.st_size);
-      strerr_warn3("cdb_init ","fd size: ",_buf,0);
+      /*strerr_warn3("cdb_init ","fd size: ",_buf,0); */
       x = mmap(0,st.st_size,PROT_READ,MAP_SHARED,fd,0);
       sprintf(_buf,"%x",x);
-      strerr_warn3("cdb_init ","mmap addr: ",_buf,0);
+      /*strerr_warn3("cdb_init ","mmap addr: ",_buf,0); */
       if (x + 1) {
 	c->size = st.st_size;
 	c->map = x;