summaryrefslogtreecommitdiff
path: root/cgpt/cmd_show.c
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2013-03-20 15:02:34 -0700
committerChromeBot <chrome-bot@google.com>2013-03-20 23:47:50 -0700
commit3f806a2abf07d7b801852a4a6f3a9080a4b5c427 (patch)
tree936deb68cac1010957023c1e7cc8f2988feddd25 /cgpt/cmd_show.c
parent95bae09c7e54a604d89f16b4a8e8b946642af8e7 (diff)
downloadvboot-3f806a2abf07d7b801852a4a6f3a9080a4b5c427.tar.gz
Apply consistent naming scheme for hostlib functions.
The chromeos-installer uses several functions from the vboot_reference userspace library, but the names of those functions are inconsistent: IsZero MapFile VbGetSystemPropertyString cgpt_add cgpt_boot cgpt_create cgpt_get_boot_partition_number cgpt_get_num_non_empty_partitions cgpt_get_partition_details cgpt_prioritize cgpt_set_attributes find_kernel_config The Google C++ style guide says types and functions should use CamelCase, while variables use lower_case_with_underscores. Kernel style (which vboot_reference tries to be more-or-less compatible with) uses lower_case_with_underscores for everything, but that really only has to apply to firmware stuff. For userspace, we can use the Google style. BUG=chromium:221544 BRANCH=none TEST=buildbot CQ-DEPEND=CL:46045 Renaming/cleanup only; no functional changes. Change-Id: I9c82c9ff8909be88586194c8ffdb435fc771195f Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/46044
Diffstat (limited to 'cgpt/cmd_show.c')
-rw-r--r--cgpt/cmd_show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgpt/cmd_show.c b/cgpt/cmd_show.c
index fa0e5f8b..2df199d3 100644
--- a/cgpt/cmd_show.c
+++ b/cgpt/cmd_show.c
@@ -108,5 +108,5 @@ int cmd_show(int argc, char *argv[]) {
params.drive_name = argv[optind];
- return cgpt_show(&params);
+ return CgptShow(&params);
}