2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-17 14:28:02 +00:00

stream: Fix error message.

This message is supposed to be helpful but with the arguments in the wrong
order it was just confusing.
This commit is contained in:
Ben Pfaff
2011-01-27 16:25:07 -08:00
parent f441c1a854
commit c662c789ed

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2008, 2009, 2010 Nicira Networks.
* Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -782,7 +782,7 @@ stream_report_content(const void *data, size_t size,
vlog_rate_limit(module, VLL_WARN, &rl,
"%s: received %s data on %s channel",
stream_name,
stream_content_type_to_string(expected_type),
stream_content_type_to_string(actual_type));
stream_content_type_to_string(actual_type),
stream_content_type_to_string(expected_type));
}
}