summaryrefslogtreecommitdiff
path: root/mkfs_minix.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-12-07 19:56:48 +0000
committerMark Whitley <markw@lineo.com>2000-12-07 19:56:48 +0000
commitf57c944e09417edcbcd69f2b01b937cadef39db2 (patch)
treea55822621d54bd82c54e272fa986e45698fea0f1 /mkfs_minix.c
parent7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff)
downloadbusybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz
busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.bz2
busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.zip
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 'mkfs_minix.c')
-rw-r--r--mkfs_minix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkfs_minix.c b/mkfs_minix.c
index 15cf531f0..95815fd4d 100644
--- a/mkfs_minix.c
+++ b/mkfs_minix.c
@@ -262,7 +262,7 @@ static inline int bit(char * a,unsigned int i)
262 */ 262 */
263static volatile void die(char *str) 263static volatile void die(char *str)
264{ 264{
265 errorMsg("%s\n", str); 265 error_msg("%s\n", str);
266 exit(8); 266 exit(8);
267} 267}
268 268
@@ -796,7 +796,7 @@ extern int mkfs_minix_main(int argc, char **argv)
796#ifdef BB_FEATURE_MINIX2 796#ifdef BB_FEATURE_MINIX2
797 version2 = 1; 797 version2 = 1;
798#else 798#else
799 errorMsg("%s: not compiled with minix v2 support\n", 799 error_msg("%s: not compiled with minix v2 support\n",
800 device_name); 800 device_name);
801 exit(-1); 801 exit(-1);
802#endif 802#endif