Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
da8160ac
Kaydet (Commit)
da8160ac
authored
Ara 30, 2011
tarafından
Nick Treleaven
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix gcc 'ordered comparison of pointer' warnings
üst
e4d2e31b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
build.c
src/build.c
+1
-1
tools.c
src/tools.c
+1
-1
No files found.
src/build.c
Dosyayı görüntüle @
da8160ac
...
...
@@ -970,7 +970,7 @@ static GPid build_run_cmd(GeanyDocument *doc, guint cmdindex)
run_info
[
cmdindex
].
pid
=
(
GPid
)
0
;
}
if
(
run_info
[
cmdindex
].
pid
>
0
)
if
(
run_info
[
cmdindex
].
pid
!=
0
)
{
g_child_watch_add
(
run_info
[
cmdindex
].
pid
,
(
GChildWatchFunc
)
run_exit_cb
,
(
gpointer
)
&
(
run_info
[
cmdindex
]));
...
...
src/tools.c
Dosyayı görüntüle @
da8160ac
...
...
@@ -359,7 +359,7 @@ void tools_execute_custom_command(GeanyDocument *doc, const gchar *command)
gchar
*
sel
;
gint
len
,
remaining
,
wrote
;
if
(
pid
>
0
)
if
(
pid
!=
0
)
g_child_watch_add
(
pid
,
(
GChildWatchFunc
)
cc_exit_cb
,
doc
);
/* use GIOChannel to monitor stdout */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment