~ubuntu-branches/ubuntu/vivid/mpv/vivid

« back to all changes in this revision

Viewing changes to player/lua.c

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2014-12-22 19:08:25 UTC
  • mfrom: (28.1.3 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20141222190825-bdtz8aiwvv65wpmi
Tags: 0.7.2-1ubuntu1
debian/rules: Disable altivec on ppc64el again, as it FTBFS with it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1043
1043
        } else if (bstr_equals0(val, "exclusive")) {
1044
1044
            flags |= MP_INPUT_EXCLUSIVE;
1045
1045
        } else {
1046
 
            luaL_error(L, "invalid flag: '%.*s'", BSTR_P(val));
 
1046
            luaL_error(L, "invalid flag");
1047
1047
        }
1048
1048
    }
1049
1049
    mp_input_enable_section(mpctx->input, section, flags);