remove unused pointer **sel in main()

This commit is contained in:
Julien Danjou 2007-10-29 16:16:17 +01:00
parent 27e7706800
commit 78b3dab63e
1 changed files with 1 additions and 2 deletions

View File

@ -245,7 +245,7 @@ main(int argc, char *argv[])
enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
Atom netatom[NetLast];
event_handler **handler;
Client **clients, **sel;
Client **clients;
struct sockaddr_un *addr;
if(argc >= 2)
@ -288,7 +288,6 @@ main(int argc, char *argv[])
/* allocate stuff */
awesomeconf = p_new(awesome_config, get_screen_count(dpy));
clients = p_new(Client *, 1);
sel = p_new(Client *, 1);
for(screen = 0; screen < get_screen_count(dpy); screen++)
{