diff --git a/src/wrapper/_pvt_struct_v2.cpp b/src/wrapper/_pvt_struct_v2.cpp index 31a16a825559222e521c40f2ffec768b12e36ff2..e7a1c05ad26e965c8f901308ca74d9d07d8d15ef 100644 --- a/src/wrapper/_pvt_struct_v2.cpp +++ b/src/wrapper/_pvt_struct_v2.cpp @@ -5,7 +5,7 @@ /* Compared with vanilla Python's struct module, this adds support * for packing complex values and only supports native packing. - * (the minimum that's needed for PyCUDA.) */ + * (the minimum that's needed for PyOpenCL.) */ #define PY_SSIZE_T_CLEAN @@ -1562,7 +1562,7 @@ init_pvt_struct(void) /* Add some symbolic constants to the module */ if (StructError == NULL) { - StructError = PyErr_NewException("pycuda._pvt_struct.error", NULL, NULL); + StructError = PyErr_NewException("pyopencl._pvt_struct.error", NULL, NULL); if (StructError == NULL) return; }