comparison dwtest.c @ 2094:8de0a767c0e5

Add \n newline to the dw_debug() line in dwtest for cleaner display on Unix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 11 Jun 2020 02:32:20 +0000
parents 0c7de37977c8
children a3e176450077
comparison
equal deleted inserted replaced
2093:0c7de37977c8 2094:8de0a767c0e5
1803 if(result == 0) 1803 if(result == 0)
1804 status = "Disabled"; 1804 status = "Disabled";
1805 else if(result > 0) 1805 else if(result > 0)
1806 status = "Enabled"; 1806 status = "Enabled";
1807 1807
1808 dw_debug("%s: %s (%d)", DWFeatureList[feat], status, result); 1808 dw_debug("%s: %s (%d)\n", DWFeatureList[feat], status, result);
1809 } 1809 }
1810 1810
1811 /* Initialize the Dynamic Windows engine */ 1811 /* Initialize the Dynamic Windows engine */
1812 dw_init(TRUE, argc, argv); 1812 dw_init(TRUE, argc, argv);
1813 1813