Skip to content

Commit 0c988f7

Browse files
committed
Remove V prefix
1 parent e8cb18b commit 0c988f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PCbuild/pythoncore.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@
652652
<ClCompile Include="..\Python\symtable.c" />
653653
<ClCompile Include="..\Python\sysmodule.c">
654654
<PreprocessorDefinitions>
655-
VARCH_NAME="$(ArchName)";
655+
ARCH_NAME="$(ArchName)";
656656
VPATH="$(PyVPath)";
657657
%(PreprocessorDefinitions)
658658
</PreprocessorDefinitions>

Python/sysmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3358,8 +3358,8 @@ make_impl_info(PyObject *version_info)
33583358
if (res < 0)
33593359
goto error;
33603360

3361-
#ifdef VARCH_NAME
3362-
value = PyUnicode_FromString(VARCH_NAME);
3361+
#ifdef ARCH_NAME
3362+
value = PyUnicode_FromString(ARCH_NAME);
33633363
if (value == NULL) {
33643364
goto error;
33653365
}

0 commit comments

Comments
 (0)