summaryrefslogtreecommitdiffstats
path: root/libopkg/pkg_src.h
diff options
context:
space:
mode:
authorCarsten Schoenert <c.schoenert@gmail.com>2013-11-29 14:19:15 (EST)
committer Paul Barker <paul@paulbarker.me.uk>2013-12-17 16:00:36 (EST)
commit6b8be706c08f547d17949f2f72783375bbb8b14c (patch)
tree7e177d6a719577c6823640db457f833304479cb3 /libopkg/pkg_src.h
parentfed9b245150a7faa630f7615302c472b7c68ff3e (diff)
libopkg: cleanup inside the public header files
No functional changes! Just a cleanup like whitespaces, blank lines, tabs and reformating lines longer 76 characters. Also adding the missed comments at the closing bracket from the #ifndef HEADER_FOO_H ... #endif loop. This helps to identify the associated preprocessor elements like theay already exits in some files. Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com> Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Diffstat (limited to 'libopkg/pkg_src.h')
-rw-r--r--libopkg/pkg_src.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libopkg/pkg_src.h b/libopkg/pkg_src.h
index 30192bb..8c2f40c 100644
--- a/libopkg/pkg_src.h
+++ b/libopkg/pkg_src.h
@@ -26,10 +26,10 @@ extern "C" {
typedef struct
{
- char *name;
- char *value;
- char *extra_data;
- int gzip;
+ char *name;
+ char *value;
+ char *extra_data;
+ int gzip;
} pkg_src_t;
int pkg_src_init(pkg_src_t *src, const char *name, const char *base_url, const char *extra_data, int gzip);
@@ -39,4 +39,4 @@ void pkg_src_deinit(pkg_src_t *src);
}
#endif
-#endif
+#endif /* PKG_SRC_H */