Couple of minor style tweaks in a patch file.

This commit is contained in:
Jung-uk Kim 2008-12-06 00:58:56 +00:00
parent 50da6a7568
commit faab5f5b72
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=223837

View file

@ -42,7 +42,7 @@
LRMI_free_real(data); LRMI_free_real(data);
+#ifdef __linux__ +#ifndef __FreeBSD__
ioctl(0, KDSETMODE, KD_TEXT); ioctl(0, KDSETMODE, KD_TEXT);
+#endif +#endif
@ -52,7 +52,7 @@
return 11; return 11;
} }
+#ifdef __linux__ +#ifndef __FreeBSD__
ioctl(0, KDSETMODE, KD_GRAPHICS); ioctl(0, KDSETMODE, KD_GRAPHICS);
+#endif +#endif
return 0; return 0;