Browse Source

[2096] Fix stupid naming error

When changing the names, this kind of got forgotten.
Michal 'vorner' Vaner 12 years ago
parent
commit
2a95f12277
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/datasrc/memory/rdata_reader.h

+ 1 - 1
src/lib/datasrc/memory/rdata_reader.h

@@ -145,7 +145,7 @@ public:
         /// equivalent to action != END, but it allows for more convenient
         /// code of a loop through the data.
         operator bool() const {
-            return (action() != END);
+            return (type() != END);
         }
     };