lib: rename "notification" -> "message"
[babeltrace.git] / plugins / text / pretty / print.c
index 3c3988827df02d15dd081e7bc62cfe0daf477277..d0639817b7a61746e05d8a159af8774616a025c5 100644 (file)
@@ -1196,11 +1196,11 @@ end:
 
 BT_HIDDEN
 int pretty_print_event(struct pretty_component *pretty,
-               const bt_notification *event_notif)
+               const bt_message *event_msg)
 {
        int ret;
        const bt_event *event =
-               bt_notification_event_borrow_event_const(event_notif);
+               bt_message_event_borrow_event_const(event_msg);
 
        BT_ASSERT(event);
        pretty->start_line = true;
@@ -1370,11 +1370,11 @@ int print_discarded_elements_msg(
 
 BT_HIDDEN
 int pretty_print_packet(struct pretty_component *pretty,
-               const bt_notification *packet_beginning_notif)
+               const bt_message *packet_beginning_msg)
 {
 #if 0
-       const bt_packet *packet = bt_notification_packet_beginning_borrow_packet_const(
-               packet_beginning_notif);
+       const bt_packet *packet = bt_message_packet_beginning_borrow_packet_const(
+               packet_beginning_msg);
        uint64_t count;
        int status = 0;
 
This page took 0.023457 seconds and 4 git commands to generate.