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:
authorBrecht Van Lommel <brecht@blender.org>2021-11-04 22:36:35 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-04 22:36:35 +0300
commite51735d276b0befe6d6238a89d1f475737744e74 (patch)
tree944294a1c9adfb4939669b979dc991eda298209a
parent4960ad420bcfd79db2884ec7a42c2bf01c1c2b85 (diff)
Cleanup: fix typo
-rw-r--r--intern/cycles/device/hip/device_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/hip/device_impl.cpp b/intern/cycles/device/hip/device_impl.cpp
index db93ecd8474..e7772cec262 100644
--- a/intern/cycles/device/hip/device_impl.cpp
+++ b/intern/cycles/device/hip/device_impl.cpp
@@ -247,7 +247,7 @@ string HIPDevice::compile_kernel(const uint kernel_features,
hipGetDeviceProperties(&props, hipDevId);
/* gcnArchName can contain tokens after the arch name with features, ie.
- "gfx1010:sramecc-:xnack-" so we tokenize it to get ther first part. */
+ "gfx1010:sramecc-:xnack-" so we tokenize it to get the first part. */
char *arch = strtok(props.gcnArchName, ":");
if (arch == NULL) {
arch = props.gcnArchName;