From 5426a4cb166ccea3ec0eef6fbef55ee83e442c19 Mon Sep 17 00:00:00 2001 From: DRC Date: Sat, 2 Sep 2017 04:08:06 +0000 Subject: [PATCH] TJUnitTest: Usage formatting tweaks --- java/TJUnitTest.java | 8 ++++---- tjunittest.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/java/TJUnitTest.java b/java/TJUnitTest.java index cf2c971..24be8eb 100644 --- a/java/TJUnitTest.java +++ b/java/TJUnitTest.java @@ -44,10 +44,10 @@ public class TJUnitTest { private static void usage() { System.out.println("\nUSAGE: java " + classname + " [options]\n"); - System.out.println("Options:\n"); - System.out.println("-yuv = test YUV encoding/decoding support\n"); - System.out.println("-noyuvpad = do not pad each line of each Y, U, and V plane to the nearest\n"); - System.out.println(" 4-byte boundary\n"); + System.out.println("Options:"); + System.out.println("-yuv = test YUV encoding/decoding support"); + System.out.println("-noyuvpad = do not pad each line of each Y, U, and V plane to the nearest"); + System.out.println(" 4-byte boundary"); System.out.println("-bi = test BufferedImage support\n"); System.exit(1); } diff --git a/tjunittest.c b/tjunittest.c index 6a4022f..7b2054e 100644 --- a/tjunittest.c +++ b/tjunittest.c @@ -44,12 +44,12 @@ void usage(char *progName) { - printf("\nUSAGE: %s [options]\n", progName); + printf("\nUSAGE: %s [options]\n\n", progName); printf("Options:\n"); printf("-yuv = test YUV encoding/decoding support\n"); printf("-noyuvpad = do not pad each line of each Y, U, and V plane to the nearest\n"); printf(" 4-byte boundary\n"); - printf("-alloc = test automatic buffer allocation\n"); + printf("-alloc = test automatic buffer allocation\n\n"); exit(1); } -- 2.40.0