diff options
Diffstat (limited to 'payloads/libpayload')
-rw-r--r-- | payloads/libpayload/Doxyfile | 2 | ||||
-rw-r--r-- | payloads/libpayload/curses/form/frm_def.c | 2 | ||||
-rw-r--r-- | payloads/libpayload/include/queue.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/payloads/libpayload/Doxyfile b/payloads/libpayload/Doxyfile index 9844722065..16f0c3b960 100644 --- a/payloads/libpayload/Doxyfile +++ b/payloads/libpayload/Doxyfile @@ -806,7 +806,7 @@ HTML_HEADER = HTML_FOOTER = -# If the HTML_FOOTER_DESCRIPTION tag is set to YES, Doxygen will +# If the HTML_FOOTER_DESCRIPTION tag is set to YES, Doxygen will # add generated date, project name and doxygen version to HTML footer. HTML_FOOTER_DESCRIPTION= YES diff --git a/payloads/libpayload/curses/form/frm_def.c b/payloads/libpayload/curses/form/frm_def.c index 54f743b01f..487b161e0b 100644 --- a/payloads/libpayload/curses/form/frm_def.c +++ b/payloads/libpayload/curses/form/frm_def.c @@ -62,7 +62,7 @@ static FORM default_form = }; NCURSES_EXPORT_VAR(FORM *) _nc_Default_Form = &default_form; - + /*--------------------------------------------------------------------------- | Facility : libnform | Function : static FIELD *Insert_Field_By_Position( diff --git a/payloads/libpayload/include/queue.h b/payloads/libpayload/include/queue.h index e5f68af832..7d579a7bc4 100644 --- a/payloads/libpayload/include/queue.h +++ b/payloads/libpayload/include/queue.h @@ -95,15 +95,15 @@ struct name { \ struct type *slh_first; /* first element */ \ } - + #define SLIST_HEAD_INITIALIZER(head) \ { NULL } - + #define SLIST_ENTRY(type) \ struct { \ struct type *sle_next; /* next element */ \ } - + /* * Singly-linked List access methods. */ |