diff options
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xml.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d60379b76b4..042048a96a3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-04-07 Paul Eggert <eggert@cs.ucla.edu> + + Fix typo that broke non-Windows builds. + * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'. + 2012-04-07 Eli Zaretskii <eliz@gnu.org> Support building on MS-Windows with libxml2. diff --git a/src/xml.c b/src/xml.c index 7be8613f74a..d8dc0677252 100644 --- a/src/xml.c +++ b/src/xml.c @@ -73,7 +73,7 @@ libxml2_loaded_p (void) #define fn_xmlCleanupParser xmlCleanupParser #define fn_xmlCheckVersion xmlCheckVersion -static inine int +static inline int libxml2_loaded_p (void) { return 1; |
