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
path: root/intern
diff options
context:
space:
mode:
authorMiika Hamalainen <blender@miikah.org>2011-12-13 14:17:17 +0400
committerMiika Hamalainen <blender@miikah.org>2011-12-13 14:17:17 +0400
commit5466befb38cf4ba21e4cf97f0318aaa7f2b10938 (patch)
tree4d2a9cdb204b2a2daba6f4d665bccad23449b6d7 /intern
parentccd916e100389c6a047ecc35d19a152103ae23ba (diff)
Fix cycles compile for win32.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/device/device_cuda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index eb0e20db355..177c90ba2df 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -255,7 +255,7 @@ public:
if(major <= 1 && minor <= 2)
cuda_error(string_printf("CUDA device supported only with shader model 1.3 or up, found %d.%d.", major, minor));
else
- cuda_error("CUDA binary kernel for this graphics card shader model (%d.%d) not found.", major, minor);
+ cuda_error(string_printf("CUDA binary kernel for this graphics card shader model (%d.%d) not found.", major, minor));
return "";
#else
/* if not, find CUDA compiler */