1
0

chore(lab03): typo in code

This commit is contained in:
2026-04-02 23:21:20 +02:00
parent 15783a04b0
commit 5a9295edfb
2 changed files with 2 additions and 12 deletions

View File

@@ -181,15 +181,5 @@ module_exit (skeleton_exit);
MODULE_AUTHOR("Fastium <fastium.pro@proton.me>");
MODULE_AUTHOR("Klagarge <remi@heredero.ch>");
MODULE_DESCRIPTION ("Module pilot charachter oriented");
MODULE_DESCRIPTION ("Module pilot character oriented");
MODULE_LICENSE ("GPL");
/*
* MAJOR can be find: cat /proc/device
*
* For testing with echo and cat:
* - mknod /dev/test-device -c 42 0 (Create a charachter device file with the right Major and Minor)
* - echo "lalalalalaalalalalallala" > /dev/test-device
* - cat /dev/test-device
*
*/

View File

@@ -10,7 +10,7 @@
#define DATA_LENGTH 70
static const char* data = "J'ai le chocolat qui est collé au palais, ducoup j'arrive pas a parlé\0";
static const char* data = "I've got chocolate stuck to the roof of my mouth, so I can't speak\0";
static char data_read[DATA_LENGTH] = {};