From 7b8b8e8de3686f5dc39050232bfa4c36b80446f5 Mon Sep 17 00:00:00 2001 From: Raj Bhattacharjea Date: Tue, 25 Mar 2008 11:51:22 -0400 Subject: [PATCH] Fix a typo that caused stack overflow --- src/devices/point-to-point/point-to-point-channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/point-to-point/point-to-point-channel.cc b/src/devices/point-to-point/point-to-point-channel.cc index 154f51784..af0871223 100644 --- a/src/devices/point-to-point/point-to-point-channel.cc +++ b/src/devices/point-to-point/point-to-point-channel.cc @@ -136,7 +136,7 @@ Ptr PointToPointChannel::GetDevice (uint32_t i) const { NS_LOG_FUNCTION; - return GetDevice (i); + return GetPointToPointDevice (i); }