hdlc: spelling fix in find_pvc() comment

Signed-off-by: Rudy Matela <rudy.matela@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Rudy Matela 2009-11-25 10:20:20 -03:00 committed by Jiri Kosina
parent 1b35edaf9f
commit 870571a2ef
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}