From ea9042cf8fab1fff5364793ec11affba42d8f08f Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Tue, 7 Feb 2017 23:35:34 +0000 Subject: [XRay][compiler-rt][NFC] Turn ProudCase functions to humbleCase functions Summary: As pointed out in casual reading of the XRay codebase, that we had some interesting named functions that didn't quite follow the LLVM coding conventions. Reviewers: chandlerc, dblaikie Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29625 llvm-svn: 294373 --- compiler-rt/lib/xray/xray_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler-rt/lib/xray/xray_utils.h') diff --git a/compiler-rt/lib/xray/xray_utils.h b/compiler-rt/lib/xray/xray_utils.h index d165e84ff13..a78e12a4c73 100644 --- a/compiler-rt/lib/xray/xray_utils.h +++ b/compiler-rt/lib/xray/xray_utils.h @@ -21,7 +21,7 @@ namespace __xray { // Default implementation of the reporting interface for sanitizer errors. -void PrintToStdErr(const char *Buffer); +void printToStdErr(const char *Buffer); // EINTR-safe write routine, provided a file descriptor and a character range. void retryingWriteAll(int Fd, char *Begin, char *End); -- cgit v1.2.3