Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-28 08:54:31 +0300
committerCampbell Barton <campbell@blender.org>2022-03-28 08:54:31 +0300
commit0ce6ed47533f715a72b139cb47a4f2dfb5a0bb39 (patch)
tree5fd811a83f4fd564d3eb4f6e48ec5da2fcdf7d78 /source/blender/python/intern/bpy_traceback.h
parent3ea90de9e65154a150f2150473d297d85ff09815 (diff)
Cleanup: variable/argument naming for Python exception access
Names filename/filepath/fn were used interchangeably.
Diffstat (limited to 'source/blender/python/intern/bpy_traceback.h')
-rw-r--r--source/blender/python/intern/bpy_traceback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_traceback.h b/source/blender/python/intern/bpy_traceback.h
index 99e032f3594..c96f8751989 100644
--- a/source/blender/python/intern/bpy_traceback.h
+++ b/source/blender/python/intern/bpy_traceback.h
@@ -10,7 +10,7 @@
extern "C" {
#endif
-void python_script_error_jump(const char *filepath, int *lineno, int *offset);
+void python_script_error_jump(const char *filepath, int *r_lineno, int *r_offset);
#ifdef __cplusplus
}