diff options
author | Mark Whitley | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /lsmod.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.zip busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'lsmod.c')
-rw-r--r-- | lsmod.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -83,7 +83,7 @@ extern int lsmod_main(int argc, char **argv) module_names = xmalloc(bufsize = 256); deps = xmalloc(bufsize); if (query_module(NULL, QM_MODULES, module_names, bufsize, &nmod)) { - fatalError("QM_MODULES: %s\n", strerror(errno)); + error_msg_and_die("QM_MODULES: %s\n", strerror(errno)); } printf("Module Size Used by\n"); @@ -94,7 +94,7 @@ extern int lsmod_main(int argc, char **argv) continue; } /* else choke */ - fatalError("module %s: QM_INFO: %s\n", mn, strerror(errno)); + error_msg_and_die("module %s: QM_INFO: %s\n", mn, strerror(errno)); } while (query_module(mn, QM_REFS, deps, bufsize, &count)) { if (errno == ENOENT) { @@ -102,7 +102,7 @@ extern int lsmod_main(int argc, char **argv) continue; } if (errno != ENOSPC) { - fatalError("module %s: QM_REFS: %s", mn, strerror(errno)); + error_msg_and_die("module %s: QM_REFS: %s", mn, strerror(errno)); } deps = xrealloc(deps, bufsize = count); } @@ -153,7 +153,7 @@ extern int lsmod_main(int argc, char **argv) close(fd); return 0; } - fatalError("/proc/modules: %s\n", strerror(errno)); + error_msg_and_die("/proc/modules: %s\n", strerror(errno)); return 1; } |