Typo fixed: call class method instead of trying to use as a variable
authorMichael R. Fisher <mfisher@bketech.com>
Mon, 15 Jul 2013 21:38:54 +0000 (16:38 -0500)
committerMichael Fisher <mfisher31@gmail.com>
Tue, 16 Jul 2013 03:57:34 +0000 (22:57 -0500)
libs/evoral/evoral/PatchChange.hpp

index b1a42c6f2e7560025b9041e6a75d9815775b7cd2..53b50a33836101ec844e6c52c9b683216dbd01db 100644 (file)
@@ -123,7 +123,7 @@ public:
                        return time() < o.time();
                }
 
-               if (bank != o.bank()) {
+               if (bank() != o.bank()) {
                        return bank() < o.bank();
                }