Prepare PBD::Controllable API cleanup (remove only registry user)
[ardour.git] / libs / libltc / timecode.c
index 83e8e1926b8e92bc5fbac1004f0a0f43ae9f006a..c1524380eb2df8ffd91e5aed8991eabc66fee4a7 100644 (file)
@@ -216,7 +216,7 @@ void ltc_time_to_frame(LTCFrame* frame, SMPTETimecode* stime, enum LTC_TV_STANDA
 void ltc_frame_reset(LTCFrame* frame) {
        memset(frame, 0, sizeof(LTCFrame));
        // syncword = 0x3FFD
-#ifdef __BIG_ENDIAN__
+#ifdef LTC_BIG_ENDIAN
        // mirrored BE bit order: FCBF
        frame->sync_word = 0xFCBF;
 #else