<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> ------------------------------------------------------------------------
r17069 | vda | 2006-12-24 01:30:09 -0600 (Sun, 24 Dec 2006) | 2 lines
Changed paths:
   M /trunk/busybox/libbb/device_open.c
   M /trunk/busybox/miscutils/less.c

small stupid changes. no code changes

 ------------------------------------------------------------------------
Index: libbb/device_open.c
===================================================================
--- libbb/device_open.c	(revision 17068)
+++ libbb/device_open.c	(revision 17069)
@@ -7,11 +7,8 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include &lt;stdio.h&gt;
-#include &lt;fcntl.h&gt;
 #include "libbb.h"
 
-
 /* try to open up the specified device */
 int device_open(const char *device, int mode)
 {
Index: miscutils/less.c
===================================================================
--- miscutils/less.c	(revision 17068)
+++ miscutils/less.c	(revision 17069)
@@ -555,8 +555,8 @@
 }
 
 /* Grab a character from input without requiring the return key. If the
-   character is ASCII \033, get more characters and assign certain sequences
-   special return codes. Note that this function works best with raw input. */
+ * character is ASCII \033, get more characters and assign certain sequences
+ * special return codes. Note that this function works best with raw input. */
 static int less_getch(void)
 {
 	char *input;
@@ -632,8 +632,7 @@
 /* This function changes the file currently being paged. direction can be one of the following:
  * -1: go back one file
  *  0: go to the first file
- *  1: go forward one file
-*/
+ *  1: go forward one file */
 static void change_file(int direction)
 {
 	if (current_file != ((direction &gt; 0) ? num_files : 1)) {
@@ -971,9 +970,7 @@
 }
 #endif
 
-
 #if ENABLE_FEATURE_LESS_BRACKETS
-
 static char opp_bracket(char bracket)
 {
 	switch (bracket) {
@@ -1029,7 +1026,6 @@
 		print_statusline("No matching bracket found");
 	buffer_line(bracket_line);
 }
-
 #endif  /* FEATURE_LESS_BRACKETS */
 
 static void keypress_process(int keypress)
</pre></body></html>