[lttng-dev] [PATCH 3/3] Fix comments formating in conf.c
Francis Giraldeau
francis.giraldeau at gmail.com
Wed May 30 19:44:01 EDT 2012
Comments should be indented with one space only.
Signed-off-by: Francis Giraldeau <francis.giraldeau at gmail.com>
---
src/bin/lttng/conf.c | 68 +++++++++++++++++++++++++-------------------------
1 file changed, 34 insertions(+), 34 deletions(-)
diff --git a/src/bin/lttng/conf.c b/src/bin/lttng/conf.c
index 50af228..dd386fe 100644
--- a/src/bin/lttng/conf.c
+++ b/src/bin/lttng/conf.c
@@ -29,10 +29,10 @@
#include "conf.h"
/*
- * config_get_file_path
+ * config_get_file_path
*
- * Returns the path with '/CONFIG_FILENAME' added to it;
- * path will be NULL if an error occurs.
+ * Returns the path with '/CONFIG_FILENAME' added to it;
+ * path will be NULL if an error occurs.
*/
char *config_get_file_path(char *path)
{
@@ -48,10 +48,10 @@ char *config_get_file_path(char *path)
}
/*
- * open_config
+ * open_config
*
- * Returns an open FILE pointer to the config file;
- * on error, NULL is returned.
+ * Returns an open FILE pointer to the config file;
+ * on error, NULL is returned.
*/
static FILE *open_config(char *path, const char *mode)
{
@@ -76,11 +76,11 @@ error:
}
/*
- * create_config_file
+ * create_config_file
*
- * Creates the empty config file at the path.
- * On success, returns 0;
- * on error, returns -1.
+ * Creates the empty config file at the path.
+ * On success, returns 0;
+ * on error, returns -1.
*/
static int create_config_file(char *path)
{
@@ -101,11 +101,11 @@ error:
}
/*
- * write_config
+ * write_config
*
- * Append data to the config file in file_path
- * On success, returns 0;
- * on error, returns -1.
+ * Append data to the config file in file_path
+ * On success, returns 0;
+ * on error, returns -1.
*/
static int write_config(char *file_path, size_t size, char *data)
{
@@ -130,9 +130,9 @@ end:
}
/*
- * config_get_default_path
+ * config_get_default_path
*
- * Returns the HOME directory path. Caller MUST NOT free(3) the return pointer.
+ * Returns the HOME directory path. Caller MUST NOT free(3) the return pointer.
*/
char *config_get_default_path(void)
{
@@ -140,9 +140,9 @@ char *config_get_default_path(void)
}
/*
- * config_destroy
+ * config_destroy
*
- * Destroys directory config and file config.
+ * Destroys directory config and file config.
*/
void config_destroy(char *path)
{
@@ -168,9 +168,9 @@ end:
}
/*
- * config_destroy_default
+ * config_destroy_default
*
- * Destroys the default config
+ * Destroys the default config
*/
void config_destroy_default(void)
@@ -183,9 +183,9 @@ void config_destroy_default(void)
}
/*
- * config_exists
+ * config_exists
*
- * Returns 1 if config exists, 0 otherwise
+ * Returns 1 if config exists, 0 otherwise
*/
int config_exists(const char *path)
{
@@ -200,11 +200,11 @@ int config_exists(const char *path)
}
/*
- * config_read_session_name
+ * config_read_session_name
*
- * Returns the session name from the config file.
- * The caller is responsible for freeing the returned string.
- * On error, NULL is returned.
+ * Returns the session name from the config file.
+ * The caller is responsible for freeing the returned string.
+ * On error, NULL is returned.
*/
char *config_read_session_name(char *path)
{
@@ -252,11 +252,11 @@ found:
}
/*
- * config_add_session_name
+ * config_add_session_name
*
- * Write session name option to the config file.
- * On success, returns 0;
- * on error, returns -1.
+ * Write session name option to the config file.
+ * On success, returns 0;
+ * on error, returns -1.
*/
int config_add_session_name(char *path, char *name)
{
@@ -278,11 +278,11 @@ error:
}
/*
- * config_init
+ * config_init
*
- * Init configuration directory and file.
- * On success, returns 0;
- * on error, returns -1.
+ * Init configuration directory and file.
+ * On success, returns 0;
+ * on error, returns -1.
*/
int config_init(char *session_name)
{
--
1.7.9.5
More information about the lttng-dev
mailing list