summary refs log tree commit diff
path: root/sbin/fdmaker/fdmaker.c
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-02-15 10:51:57 +0200
committerWlodekM <[email protected]>2025-02-15 10:51:57 +0200
commit545c5f85c38de8ddb8c026bf3b76658c8d8f3d6b (patch)
treea9df68df52ff273715b595efc7cd4cb20f7859a3 /sbin/fdmaker/fdmaker.c
parent967d5cd81a190f6aa7ac44c269d60ae3a1071464 (diff)
fix some stuff; add some coreutils
Diffstat (limited to 'sbin/fdmaker/fdmaker.c')
-rw-r--r--sbin/fdmaker/fdmaker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fdmaker/fdmaker.c b/sbin/fdmaker/fdmaker.c
index 6dcc299..7591147 100644
--- a/sbin/fdmaker/fdmaker.c
+++ b/sbin/fdmaker/fdmaker.c
@@ -16,7 +16,7 @@ int main() {
 
     // >open /dev/tty1
     // >look inside
-    // >bits
+    // >Failed to open /dev/tty1
     int fd = open("/dev/tty1", O_RDWR);
     if (fd == -1) {
         write(2, "Failed to open /dev/tty1\n", 26);