Browse Source

Fix elif -> else

Suren A. Chilingaryan 6 years ago
parent
commit
59be37a2ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver/rdma.c

+ 1 - 1
driver/rdma.c

@@ -33,7 +33,7 @@ static unsigned long pcidriver_follow_pte(struct mm_struct *mm, unsigned long ad
     p4d_t *p4d;
     p4d = p4d_offset(pgd, address);
     pud = pud_offset(p4d, address);
-#elif
+#else
     pud = pud_offset(pgd, address);
 #endif