diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-01 18:10:55 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-01 18:10:55 -0700 |
commit | 20946d053dea13a441888c8942e4b741bbef5d43 (patch) | |
tree | 8f49f03d287c4d5f6fddd03780419f64437d3123 | |
parent | 99c2a4de8868fb2e63768a647c3537c710183c22 (diff) | |
download | vyatta-cfg-20946d053dea13a441888c8942e4b741bbef5d43.tar.gz vyatta-cfg-20946d053dea13a441888c8942e4b741bbef5d43.zip |
Remove unnecessary return statements
Get rid of:
return;
}
-rw-r--r-- | src/common/unionfs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/unionfs.c b/src/common/unionfs.c index 2c4f0f4..85607a3 100644 --- a/src/common/unionfs.c +++ b/src/common/unionfs.c @@ -486,7 +486,6 @@ retrieve_data(char* rel_data_path, GNode *node, const char* root, } } - return; } @@ -793,7 +792,6 @@ common_commit_copy_to_live_config(GNode *node, boolean suppress_piecewise_copy, fflush(NULL); free(command); - return; } @@ -912,7 +910,6 @@ common_commit_clean_temp_config(GNode *root_node, boolean test_mode) system("/opt/vyatta/sbin/vyatta-cfg-notify"); free(command); - return; } /** @@ -1051,7 +1048,6 @@ get_term_data_values(GNode *node) // g_dataset_destroy(&datalist); - return; } /** |