Fix a typo and teach linux code to use data
authorNikos Ntarmos <ntarmos@cs.uoi.gr>
Sat, 28 Mar 2009 17:47:53 +0000 (19:47 +0200)
committerPhil Sutter <phil@nwl.cc>
Sun, 29 Mar 2009 00:25:33 +0000 (01:25 +0100)
commitb1da4bfdaae448527a633f31f95ab1e4c826a052
tree2a82e952bd26632cf5a39338f59a64c470c2ae59
parente7559ad5be638df115b582a5046153414f2768cf
Fix a typo and teach linux code to use data

Typo: __LINUX__ was used in a conditional code block, while the rest of
      the code uses __linux__

data: free_text_objects(...) #define's 'data' to be 'obj->data' to make
  the code more compact. The linux-specific parts of the code still
  used obj->data, which should expand to obj->obj->data, which is
  wrong.

Signed-off-by: Nikos Ntarmos <ntarmos@cs.uoi.gr>
src/conky.c