summaryrefslogtreecommitdiff
path: root/libcuda
diff options
context:
space:
mode:
authorMengchi Zhang <[email protected]>2019-06-06 02:28:12 -0400
committerMengchi Zhang <[email protected]>2019-06-06 02:28:12 -0400
commitca08abd4340e990d0c135f93672184a8e2116ecd (patch)
tree5750fbf1f371f0c8e0edc0bc36aa8229d15bd81b /libcuda
parent570ce0a3d6e049ec3ee42329fbf25019fd4eb2e5 (diff)
Miss semicolon
Signed-off-by: Mengchi Zhang <[email protected]>
Diffstat (limited to 'libcuda')
-rw-r--r--libcuda/cuda_runtime_api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc
index 855f11d..66562aa 100644
--- a/libcuda/cuda_runtime_api.cc
+++ b/libcuda/cuda_runtime_api.cc
@@ -3947,7 +3947,7 @@ cuLinkAddFile(CUlinkState state, CUjitInputType type, const char *path,
unsigned int numOptions, CUjit_option *options, void **optionValues)
{
return cuLinkAddFileInternal(state, type, path,
- numOptions, options, optionValues)
+ numOptions, options, optionValues);
}
#endif