diff options
author | DRC <information@libjpeg-turbo.org> | 2018-04-08 12:49:05 -0500 |
---|---|---|
committer | DRC <information@libjpeg-turbo.org> | 2018-04-09 10:47:14 -0500 |
commit | b628d6934ffdbbdad2956618c639673c5c715a23 (patch) | |
tree | 22f64dab613a92ec6b0704853f6076c45690a9cb /rdjpgcom.c | |
parent | 450306a84b18a742944d4d2fa8478016b1004d14 (diff) |
Additional code formatting tweaks
... detected with an improved version of our checkstyle script
Diffstat (limited to 'rdjpgcom.c')
-rw-r--r-- | rdjpgcom.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -301,7 +301,8 @@ process_SOFn(int marker) case M_SOF10: process = "Progressive, arithmetic coding"; break; case M_SOF11: process = "Lossless, arithmetic coding"; break; case M_SOF13: process = "Differential sequential, arithmetic coding"; break; - case M_SOF14: process = "Differential progressive, arithmetic coding"; break; + case M_SOF14: + process = "Differential progressive, arithmetic coding"; break; case M_SOF15: process = "Differential lossless, arithmetic coding"; break; default: process = "Unknown"; break; } |