# File lib/mpdserver.rb, line 1071
        def incr_version
                if @status[:playlist] == 2147483647
                        @status[:playlist] = 1
                        @the_playlist.each do |song|
                                song['_mod_ver'] = 0
                        end
                else
                        @status[:playlist] += 1
                end
        end