scrcpy/app
Romain Vimont 999c964689 Make macro expansion-safe
Use parentheses to avoid unexpected results.

For example, make:

    2 * SERIALIZED_EVENT_MAX_SIZE

expand to:

    2 * (3 + TEXT_MAX_LENGTH)

instead of:

    2 * 3 + TEXT_MAX_LENGTH
2019-05-30 22:30:18 +02:00
..
src Make macro expansion-safe 2019-05-30 22:30:18 +02:00
tests Replace SDL_bool by bool in tests 2019-05-30 22:30:18 +02:00
meson.build Format meson.build for readability 2019-05-30 22:30:18 +02:00