diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-08-11 12:48:38 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-08-11 12:48:38 -0400 |
commit | d639c3cb2390ba53b44a62a62711724bbd10747d (patch) | |
tree | ae4587137336efec16b5fb000563283aed856e82 /backend_shinkos1245.c | |
parent | cca359f9958d2152377695e632f567f34b892303 (diff) | |
download | selphy_print-d639c3cb2390ba53b44a62a62711724bbd10747d.tar.gz selphy_print-d639c3cb2390ba53b44a62a62711724bbd10747d.tar.bz2 selphy_print-d639c3cb2390ba53b44a62a62711724bbd10747d.zip |
common: un-hardcode 'stderr' as the logging stream
It's now a global variable that's initialized to stderr
(This is prep work for eventual support of printing applications)
Diffstat (limited to 'backend_shinkos1245.c')
-rw-r--r-- | backend_shinkos1245.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend_shinkos1245.c b/backend_shinkos1245.c index ea70e3d..ecdfa24 100644 --- a/backend_shinkos1245.c +++ b/backend_shinkos1245.c @@ -1072,7 +1072,7 @@ top: last_state = state; - fflush(stderr); + fflush(logger); switch (state) { case S_IDLE: |