]> sourceware.org Git - dm.git/commitdiff
printf->fprintf
authorAlasdair Kergon <agk@redhat.com>
Fri, 1 Oct 2004 19:07:41 +0000 (19:07 +0000)
committerAlasdair Kergon <agk@redhat.com>
Fri, 1 Oct 2004 19:07:41 +0000 (19:07 +0000)
WHATS_NEW
lib/libdm-common.c

index 6d42cc8907d5d27252fd3a3366ca43b95c6d6a06..8bbfd8a669341d2a5f48bb6324591788f65e3076 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 1.00.20 -
 =============================
+  Fix a printf.
 
 Version 1.00.19 - 3 July 2004
 =============================
index af4e7734978718b090e2185570916546c14507c5..6f1b085cce65d9cb5a6b1ccb3d72f1ad1e1aa91c 100644 (file)
@@ -63,7 +63,7 @@ static void _default_log(int level, const char *file, int line,
        if (level < _LOG_WARN)
                fprintf(stderr, "\n");
        else
-               printf("\n");
+               fprintf(stdout, "\n");
 }
 
 dm_log_fn _log = _default_log;
This page took 0.024235 seconds and 5 git commands to generate.