summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Input.h b/include/Input.h
index 66fa839..861f4dd 100644
--- a/include/Input.h
+++ b/include/Input.h
@@ -41,7 +41,7 @@ class Input : public Handle {
virtual bool CanRead() const { return true; }
virtual bool CanSeek() const;
virtual off_t seek(off_t, int = SEEK_SET) throw (GeneralException);
- virtual String GetName() const { return n; }
+ virtual String GetName() const { return "@" + n; }
virtual ssize_t GetSize() const { return size; }
virtual time_t GetModif() const { return date_modif; }
virtual void SetZ(int = 9) throw (GeneralException);