"A little patch for the strings applet of the busybox development tree
that substitutes two lines of code with a libbb function saving a couple
of bytes." - Tito
diff --git a/miscutils/strings.c b/miscutils/strings.c
index c914338..6e45345 100644
--- a/miscutils/strings.c
+++ b/miscutils/strings.c
@@ -82,8 +82,7 @@
 pipe:
 
 			count=0;
-			do
-			{
+			do{
 				c=fgetc(file);
 				if(ISSTR(c))
 				{
@@ -110,11 +109,9 @@
 					i=0;
 				}
 				count++;
-			}
-			while(c!=EOF);
+			}while(c!=EOF);
 
-			if(file!=stdin)
-				fclose(file);
+			bb_fclose_nonstdin(file);
 		}
 		else
 		{