ps: work around libc bug: printf("%.*s\n", MAX_INT, buffer)
diff --git a/procps/ps.c b/procps/ps.c
index c1cb643..2be0b36 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -262,7 +262,9 @@
 		parse_o(default_o);
 	post_process();
 
-	terminal_width = INT_MAX;
+	/* Was INT_MAX, but some libc's go belly up with printf("%.*s")
+	 * and such large widths */
+	terminal_width = 30000;
 	if (isatty(1)) {
 		get_terminal_width_height(1, &terminal_width, NULL);
 		terminal_width--;