Mercurial > hg
changeset 34636:31c6c4d27be7
exewrapper: format with clang-format
A few *s move around, some spaces around parens, a couple of
braces. Nothing remarkable.
Differential Revision: https://phab.mercurial-scm.org/D1032
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 04 Oct 2017 11:04:18 -0400 |
parents | 3455e2e2ce9b |
children | 5f79f5f8487a |
files | mercurial/exewrapper.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/exewrapper.c Wed Oct 04 11:02:44 2017 -0400 +++ b/mercurial/exewrapper.c Wed Oct 04 11:04:18 2017 -0400 @@ -23,7 +23,6 @@ } #endif - static char pyscript[MAX_PATH + 10]; static char pyhome[MAX_PATH + 10]; static char envpyhome[MAX_PATH + 10]; @@ -40,11 +39,10 @@ HANDLE hfind; const char *err; HMODULE pydll; - void (__cdecl *Py_SetPythonHome)(char *home); - int (__cdecl *Py_Main)(int argc, char *argv[]); + void(__cdecl * Py_SetPythonHome)(char *home); + int(__cdecl * Py_Main)(int argc, char *argv[]); - if (GetModuleFileName(NULL, pyscript, sizeof(pyscript)) == 0) - { + if (GetModuleFileName(NULL, pyscript, sizeof(pyscript)) == 0) { err = "GetModuleFileName failed"; goto bail; } @@ -87,10 +85,12 @@ strcat_s(pydllfile, sizeof(pydllfile), "\\" HGPYTHONLIB ".dll"); pydll = LoadLibrary(pydllfile); if (pydll == NULL) { - err = "failed to load private Python DLL " HGPYTHONLIB ".dll"; + err = "failed to load private Python DLL " HGPYTHONLIB + ".dll"; goto bail; } - Py_SetPythonHome = (void*)GetProcAddress(pydll, "Py_SetPythonHome"); + Py_SetPythonHome = + (void *)GetProcAddress(pydll, "Py_SetPythonHome"); if (Py_SetPythonHome == NULL) { err = "failed to get Py_SetPythonHome"; goto bail; @@ -106,7 +106,7 @@ } } - Py_Main = (void*)GetProcAddress(pydll, "Py_Main"); + Py_Main = (void *)GetProcAddress(pydll, "Py_Main"); if (Py_Main == NULL) { err = "failed to get Py_Main"; goto bail; @@ -133,7 +133,7 @@ name of our exe (argv[0]) in the position where the python.exe canonically is, and insert the pyscript next. */ - pyargv = malloc((argc + 5) * sizeof(char*)); + pyargv = malloc((argc + 5) * sizeof(char *)); if (pyargv == NULL) { err = "not enough memory"; goto bail;