modprobe: reformat to match bbox style

This commit is contained in:
Denis Vlasenko 2006-10-27 15:12:50 +00:00
parent 82f9e28513
commit cf70433173
2 changed files with 293 additions and 296 deletions

View File

@ -7,9 +7,6 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/utsname.h> /* for uname(2) */
#include "libbb.h"
@ -27,12 +24,12 @@ int get_linux_version_code(void)
if (uname(&name) == -1) {
bb_perror_msg("cannot get system information");
return (0);
return 0;
}
s = name.release;
r = 0;
for (i=0 ; i<3 ; i++) {
for (i = 0; i < 3; i++) {
r = r * 256 + atoi(strtok(s, "."));
s = NULL;
}

File diff suppressed because it is too large Load Diff