From: Daniel Colascione Date: Tue, 24 Sep 2013 11:48:53 +0000 (-0800) Subject: Fix build break due to vector changes X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1458 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=10ebac9d6af07da7650c490a39144177a25861e3;p=emacs.git Fix build break due to vector changes --- diff --git a/src/ChangeLog b/src/ChangeLog index e4d9ad3b835..82517661164 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2013-09-24 Daniel Colascione + + * process.c (Fnetwork_interface_info): Fix build break due to + vector changes. + 2013-09-24 Paul Eggert * dispnew.c (clear_glyph_row, copy_row_except_pointers): diff --git a/src/process.c b/src/process.c index fcaa7894779..2ed8a690193 100644 --- a/src/process.c +++ b/src/process.c @@ -3752,7 +3752,7 @@ FLAGS is the current flags of the interface. */) memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen); for (n = 0; n < 6; n++) - p->contents[n] = make_number (linkaddr[n]); + p->u.contents[n] = make_number (linkaddr[n]); elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr); break;