From 7a7b701918c528564d4388a16490addf4d5e141f Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Mon, 18 Aug 2014 10:56:46 -0500 Subject: [PATCH 2/2] Trivial addition of newlines at end of three files. Newlines are required at end of files, and gcc 4.1.2 will fail to build if newlines are not present. dns.c:342:2: error: no newline at end of file format_cache.c:514:2: error: no newline at end of file ... --- main/dns.c | 3 ++- main/format_cache.c | 3 ++- res/stasis/messaging.h | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/main/dns.c b/main/dns.c index fb0e2ac..320d917 100644 --- a/main/dns.c +++ b/main/dns.c @@ -339,4 +339,5 @@ struct ao2_container *ast_dns_get_nameservers(void) #endif return nameservers; -} \ No newline at end of file +} + diff --git a/main/format_cache.c b/main/format_cache.c index f7b0776..07e4d8f 100644 --- a/main/format_cache.c +++ b/main/format_cache.c @@ -511,4 +511,5 @@ int ast_format_cache_is_slinear(struct ast_format *format) } return 0; -} \ No newline at end of file +} + diff --git a/res/stasis/messaging.h b/res/stasis/messaging.h index c69d5d5..75ef5c9 100644 --- a/res/stasis/messaging.h +++ b/res/stasis/messaging.h @@ -80,4 +80,4 @@ int messaging_cleanup(void); */ int messaging_init(void); -#endif /* #define _ASTERISK_RES_STASIS_MESSAGING_H */ \ No newline at end of file +#endif /* #define _ASTERISK_RES_STASIS_MESSAGING_H */ -- 2.0.0