aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-10-15 20:29:36 +0200
committerChristian Grothoff <christian@grothoff.org>2017-10-15 20:29:36 +0200
commit73e1679e73906c1291f127593b4cdf3db772a606 (patch)
tree28c84d5ba7f25c65ed246596d37c8a6004984186
parent58626426a3f4e83f006a055172670d340cbe2da3 (diff)
downloadlibextractor-73e1679e73906c1291f127593b4cdf3db772a606.tar.gz
libextractor-73e1679e73906c1291f127593b4cdf3db772a606.zip
fix indentation
-rw-r--r--src/main/extractor_plugpath.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/extractor_plugpath.c b/src/main/extractor_plugpath.c
index 234d80d..461f25e 100644
--- a/src/main/extractor_plugpath.c
+++ b/src/main/extractor_plugpath.c
@@ -218,8 +218,9 @@ get_path_from_module_filename ()
218 * @param number of bytes available in 'buf' 218 * @param number of bytes available in 'buf'
219 * @return 0 on success, otherwise desired number of bytes is stored in 'bufsize' 219 * @return 0 on success, otherwise desired number of bytes is stored in 'bufsize'
220 */ 220 */
221typedef int (*MyNSGetExecutablePathProto) (char *buf, 221typedef int
222 size_t *bufsize); 222(*MyNSGetExecutablePathProto) (char *buf,
223 size_t *bufsize);
223 224
224 225
225/** 226/**