From: bernie Date: Mon, 20 Mar 2006 17:50:29 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 1.0.0~670 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=ed5f76b3d2ed4a7d68aef19981a873f12acabba0;p=bertos.git Fix typo. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@571 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/list.h b/mware/list.h index d1be6517..8d89b4d6 100755 --- a/mware/list.h +++ b/mware/list.h @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.19 2006/03/20 17:50:29 bernie + *#* Fix typo. + *#* *#* Revision 1.18 2006/02/27 22:40:21 bernie *#* Add support for poor pre-C99 compilers. *#* @@ -137,7 +140,7 @@ typedef struct _PriNode * * LIST_INIT(&foo_list); * ADDHEAD(&foo_list, &foo1); - * INSERTBEFORE(&foo_list, &foo2); + * INSERT_BEFORE(&foo_list, &foo2); * FOREACH_NODE(fp, &foo_list) * fp->a = 10; * }