Browse Source

Fixed aliasing

pull/261/head
Sebastien Fabbro 12 years ago
parent
commit
4e1eba58aa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      driver/others/init.c

+ 1
- 1
driver/others/init.c View File

@@ -315,7 +315,7 @@ static int numa_check(void) {
}

while ((dir = readdir(dp)) != NULL) {
if (*(unsigned int *) dir -> d_name == 0x065646f6eU) {
if (*(char *) dir -> d_name == 0x065646f6eU) {

node = atoi(&dir -> d_name[4]);



Loading…
Cancel
Save