Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / libpspp / deque.h
index 0233c13d31bac1870ce39fdd361d58f6f6a12bec..3cb2d88b39ee630a2add9810b3cbf9675a476570 100644 (file)
@@ -56,7 +56,7 @@
         if (deque_is_full (&deque))
           data = deque_expand (&deque, data, sizeof *data);
         data[deque_push_back (&deque)] = x;
-        
+
    Expanding a deque will copy its elements from one memory
    region to another using memcpy.  Thus, your deque elements
    must tolerate copying if their deque is to be expanded. */