Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 modplugtools (0.5.3-3) unstable; urgency=medium
 .
   * Bump debhelper version to 11.
   * Bump standards version to 4.2.1.
   * debian/control:
     - Build-depend on libopenmpt-modplug-dev.
     - Drop libmodplug-dev.
   * debian/rules: Drop autotools call.
Author: Gürkan Myczko <gurkan@phys.ethz.ch>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2018-09-11

--- modplugtools-0.5.3.orig/mp123/modplug123.c
+++ modplugtools-0.5.3/mp123/modplug123.c
@@ -307,7 +307,7 @@ int main(int argc, char* argv[])
     }
 
     if (!get_term_size(STDIN_FILENO,&terminal)) {
-	fprintf(stderr,"warning: failed to get terminal size\n");
+	fprintf(stderr,"Warning: failed to get terminal size\n");
     }
     
     srand(time(NULL));
@@ -346,7 +346,7 @@ for (song=0; song<nFiles; song++) {
 
     f2 = ModPlug_Load(filedata, size);
     if (!f2) {
-	printf("could not load %s\n", filename);
+	printf("Could not load %s\n", filename);
 	close(audio_fd);
 	free(filedata); /* ? */
     } else {
@@ -566,7 +566,7 @@ for (song=0; song<nFiles; song++) {
     reset_keypress();
     ModPlug_Unload(f2);
     ao_close(device);
-    fprintf(stderr, "Closing audio device.\n");
+    //fprintf(stderr, "Closing audio device.\n");
     free(filedata);
     } /* valid module */
     
--- modplugtools-0.5.3.orig/mpplay/modplugplay.c
+++ modplugtools-0.5.3/mpplay/modplugplay.c
@@ -333,7 +333,7 @@ int main(int argc, char* argv[])
     }
 
     if (!get_term_size(STDIN_FILENO,&terminal)) {
-	fprintf(stderr,"warning: failed to get terminal size\n");
+	fprintf(stderr,"Warning: failed to get terminal size\n");
     }
     
     srand(time(NULL));
@@ -416,7 +416,7 @@ for (song=1; song<argc; song++) {
 
     f2 = ModPlug_Load(d, size);
     if (!f2) {
-	printf("could not load %s\n", argv[song]);
+	printf("Could not load %s\n", argv[song]);
 	close(audio_fd);
 	free(d); /* ? */
     } else {
@@ -714,9 +714,8 @@ for (song=1; song<argc; song++) {
     close(audio_fd);
     free(d);
     } /* valid module */
-    
+
 } /* for */
 
     return 0;
 }
-
