From: Ben Pfaff Date: Tue, 23 Aug 2011 17:47:53 +0000 (-0700) Subject: ovs.stream: Use %d in place of %ld since the two are equivalent in Python. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f9dd59cf178b0765727f6908e135f48c766e213;p=openvswitch ovs.stream: Use %d in place of %ld since the two are equivalent in Python. Reported-by: Reid Price --- diff --git a/python/ovs/stream.py b/python/ovs/stream.py index 16e383a0..20cd7fe2 100644 --- a/python/ovs/stream.py +++ b/python/ovs/stream.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010 Nicira Networks +# Copyright (c) 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. @@ -75,8 +75,8 @@ class Stream(object): return errno.EAFNOSUPPORT, None Stream.n_unix_sockets += 1 - bind_path = "/tmp/stream-unix.%ld.%d" % (os.getpid(), - Stream.n_unix_sockets) + bind_path = "/tmp/stream-unix.%d.%d" % (os.getpid(), + Stream.n_unix_sockets) connect_path = name[5:] error, sock = ovs.socket_util.make_unix_socket(socket.SOCK_STREAM, True, bind_path,