]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Fixed a log format bug: %d -> %ld, plus a (long int) cast.
authorDamien Neil <source@isc.org>
Thu, 15 Feb 2001 20:28:33 +0000 (20:28 +0000)
committerDamien Neil <source@isc.org>
Thu, 15 Feb 2001 20:28:33 +0000 (20:28 +0000)
omapip/buffer.c

index 3adaceb18fc4e486afdcd018f07950e9edf1c8da..eb694328f8546083ef7b5160a11bb9890dcdd90d 100644 (file)
@@ -91,8 +91,8 @@ static void trace_connection_input_input (trace_type_t *ttype,
                                   omapi_connection_object_t, lp);
 
        if (!c) {
-               log_error ("trace connection input: no connection index %d",
-                          connect_index);
+               log_error ("trace connection input: no connection index %ld",
+                          (long int)connect_index);
                return;
        }