Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 870571a2 authored by Rudy Matela's avatar Rudy Matela Committed by Jiri Kosina
Browse files

hdlc: spelling fix in find_pvc() comment



Signed-off-by: default avatarRudy Matela <rudy.matela@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 1b35edaf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ static inline pvc_device* find_pvc(hdlc_device *hdlc, u16 dlci)
		if (pvc->dlci == dlci)
			return pvc;
		if (pvc->dlci > dlci)
			return NULL; /* the listed is sorted */
			return NULL; /* the list is sorted */
		pvc = pvc->next;
	}