tests: Put atlocal.in in a logical order.
[pspp-builds.git] / src / data / case.h
index 0bfc62cdce96054fe461043ac2cb44bf39436c03..d00c2ad37badd69cc80f9991d99a70bf8d88084c 100644 (file)
@@ -135,7 +135,7 @@ case_unshare (struct ccase *c)
 static inline struct ccase *
 case_ref (const struct ccase *c_)
 {
-  struct ccase *c = (struct ccase *) c_;
+  struct ccase *c = CONST_CAST (struct ccase *, c_);
   c->ref_cnt++;
   return c;
 }